Forum Discussion
bbotros77
3 years agoFrequent Visitor
"If Formula
Hi There , I am looking to use "If" formula to let Power BI apply a certain rule only if the "Service Date" has date (not blank) . how to type this formula please. Appreciate any help
vicky_
Super User
3 years agoIF([Service Date] <> "", [something], [else something else])
OR
IF(NOT(ISBLANK([Service Date])), [something], [else something else])
bbotros77
3 years agoFrequent Visitor
Thank you Vicky. I also put IF (service Date) >0 and it works , my assumption was this will let Power BI pick any cell that has value.