DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
dosyayı ekliyorum
=EĞER(B4="erkek";1;EĞER(B4="kız";2;0))
=EĞER(B4="erkek";1;2)
=EĞER(B4="erkek";"♂";EĞER(B4="kız";"♀";"Ø"))
Bende eksik okumuşum soruyu![]()
merhaba
cinsiyetle ilgili ne çok sembol varmış
http://commons.wikimedia.org/wiki/Category:Gender_symbols
Ne tür bir hatayla karşılaşıyorsunuz.
senin formülünden faydalanarak Erkekse E Kız ise K yazdırmayı başardım eline sağlık
=EĞER(B4="erkek";"E";EĞER(B4="kız";"K";0))![]()
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [B4]) Is Nothing Then Exit Sub
cinsiyet = UCase(Target.Text)
If cinsiyet = "ERKEK" Then
[B4] = 1
Else
If cinsiyet = "KıZ" Then
[B4] = 2
Else
End If
End If
End Sub
bu kod işinizi görür mü
[/QUOTEKod:Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, [B4]) Is Nothing Then Exit Sub cinsiyet = UCase(Target.Text) If cinsiyet = "ERKEK" Then [B4] = 1 Else If cinsiyet = "KıZ" Then [B4] = 2 Else End If End If End Sub
eline sağlık Teşekkür ederim evet işimi gördü ancak tüm stununun tamamında bunu yapmak istesem ne yapmam lazım