Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I have a calculated date column (lets call in X) in my table. I have another normal date column (Y) in my table. I am not able to compare if Y is less than X since X is a calculated column. Any help on what I can do to solve this is appreciated.
If you have a calculated date column (X) and a normal date column (Y) in your table, you can compare them using DAX in Power BI. You can create a new measure or column to perform this comparison. Here's how you can do it:
Create a New Measure: If you want to create a measure that calculates a result for each row in your visualizations, you can use a DAX measure. In this example, I'll call the measure "ComparisonResult."
ComparisonResult = IF(YourTable[Y] < YourTable[X], "Y is less than X", "Y is greater than or equal to X")
Replace "YourTable" with the actual name of your table, and "X" and "Y" with the names of your calculated and normal date columns, respectively. This measure will return a text result indicating whether Y is less than X or not.
Create a New Calculated Column: If you want to create a new column in your table that permanently stores the comparison result, you can create a calculated column using DAX. In this case, you'll use the ADDCOLUMNS function to iterate through the rows and perform the comparison.
NewColumn =
ADDCOLUMNS(
YourTable,
"ComparisonResult",
IF([Y] < [X], "Y is less than X", "Y is greater than or equal to X")
)
This DAX formula adds a new column called "ComparisonResult" to your table, which will contain the comparison result for each row.
After creating either the measure or the calculated column, you can use it in your visualizations to see the comparison between the Y and X columns. If Y is less than X, the result will indicate that, and if not, it will show the opposite.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
93 | |
90 | |
84 | |
70 | |
49 |
User | Count |
---|---|
141 | |
120 | |
112 | |
59 | |
59 |