Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! 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
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 50 | |
| 46 | |
| 41 | |
| 39 |