Answer Question
0
0

Zdravím vedel by niekto prepísat tieto vzorce na funkcie vo WBA ?

1. =KDYŽ(T4=””;T4=0;HODNOTA(T4))
2.=KDYŽ(ČÁST(M4;3;1)=”2″;0,5;KDYŽ(M4=”D”;1;0))

Marked as spam
Avatar uživatele Odeslal martinkucek@centrum.sk
Otázka položena 19.4.2016 8:27
112 views
0
Private answer

Mohlo by to být třeba takhle..
‘1. podmínka
If Cells(4, 20).Value = “” Then
Cells(4, 20) = 0
Else
If IsNumeric(Cells(4, 20).Value) Then Cells(4, 20).Value = CDbl(Cells(4, 20))
End If
‘2. podmínka
If Mid(Range(“M4”).Value, 3, 1) = “2” Then
Range(“M4”).Value = 0.5
Else
If Range(“M4”).Value = “D” Then Range(“M4”).Value = 1 Else Range(“M4”).Value = 0
End If

Marked as spam
Avatar uživatele Odeslal Anonymous
Odpověděl 10.5.2016 19:11

Odešlete svou odpověď

Attach YouTube/Vimeo clip putting the URL in brackets: [https://youtu.be/Zkdf3kaso]