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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello
I was hoping someone could help me please
I have two columns, all in the same query.
Target Date and Actual Date
I'd like to work out when the actual date is the same as the target date, and when it is earlier.
How would I work that out please?
Thank you in advance
Solved! Go to Solution.
@Pricey79
You can add a new column to your table using DAX as follows:
Check Date = if( Table[actual date] = Table[target date] , "Same", if ( Table[actual date] > Table[target date] , "Ealier"))
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Pricey79
You can add a new column to your table using DAX as follows:
Check Date = if( Table[actual date] = Table[target date] , "Same", if ( Table[actual date] > Table[target date] , "Ealier"))
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 136 | |
| 102 | |
| 68 | |
| 66 | |
| 58 |