what does IF(D3="," mean please

S

starguy

this might be like this
=IF(D3=""
"" represents blank cell, so above formula will be read as IF D3= blank
then....
 
D

Dav

if(d3="," would usually be part of an if statement like if
(d3=",".Yes","No")

So if the value of d3 is a comma , then yes otherwise no

as starguy says if(d3="", would mean if d3 is blank


Regards

Dav
 
Top