Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I am trying to create a column with the requirement. I want to filter out the rows where Date1<Date 2 only when Date1 has Data
If Date1 is blank and if Date1>Date2 then "True" else "False".
Getting error "DAX comparison operations do not support comparing values of type Date with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values".
I have tried the same logic with whole number instead of True and false still getting the same error.
Hi @Anonymous ,
Please check whether the type of date1 or date2 is the same.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you for the response, I have applied
Column 2 =
IF(
'Lead'[Date1]="",
"",
IF(
'Lead'[Date1] < 'Lead'[Date2],
"0",
"1"
)
)
Getting Error "DAX comparison operations do not support comparing values of type Date with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values".
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
9 | |
8 |