Hello.
How in such an IF loop, add a few more conditions?
At this point, error is shown if cell F6 is empty.
How do I add a few more cells to this condition?
my code:
This doesn't work:
nor this:
If it adds cells after the decimal point, it only satisfies the first condition, if I type "&" I get an error.
What should I type in to make this work as a product of terms?
How in such an IF loop, add a few more conditions?
At this point, error is shown if cell F6 is empty.
How do I add a few more cells to this condition?
my code:
If (Range("F6") = "") Then
Range("N6") = "Błąd"
Else
..........
end if
This doesn't work:
If (Range("F6,H6") = "") Then
nor this:
If (Range("F6" & "H6") = "") Then
If it adds cells after the decimal point, it only satisfies the first condition, if I type "&" I get an error.
What should I type in to make this work as a product of terms?