Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have a text formula that I would use in Excel, however PBI doesn't seem to accept this. I changed it to ISTEXT but you can only use that once, not twice.
Can anyone help please?
Thanks
Solved! Go to Solution.
Hi @timward10 ,
Power BI use the FORMAT function for this purpose. Additionally, to check for blanks, you use BLANK() or ISBLANK() instead of =blank().
Corrected DAX formula:
Install Date =
IF(
ISBLANK([Customer Requested Install Date]),
FORMAT(EDATE([Close Date], 3), "MMM YY"),
FORMAT([Customer Requested Install Date], "MMM YY")
)
Hi @timward10 ,
Power BI use the FORMAT function for this purpose. Additionally, to check for blanks, you use BLANK() or ISBLANK() instead of =blank().
Corrected DAX formula:
Install Date =
IF(
ISBLANK([Customer Requested Install Date]),
FORMAT(EDATE([Close Date], 3), "MMM YY"),
FORMAT([Customer Requested Install Date], "MMM YY")
)