Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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")
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
133 | |
76 | |
53 | |
38 | |
37 |
User | Count |
---|---|
203 | |
81 | |
71 | |
55 | |
48 |