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 nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
hello,
I am trying to create a calculated column where I am trying to flag only clients that are earning more thn $50,000 per year.
My main table is my clients table and that clients table is connected to a dates table called Fiscal Year.
This is the dax that I created:
Solved! Go to Solution.
Hi @OPS-MLTSD ,
DATESBETWEEN() returns a table that contains a column of dates that begins with a specified start date and continues until a specified end date.
This function is suited to pass as a filter to the CALCULATE function. Use it to filter an expression by a custom date range.
So you may try:
50000 Earning =
var _sum= CALCULATE(SUM(Clients[Wage]),DATESBETWEEN('Clients'[STARTDATE],MIN('fiscal Year'[Date]), MAX('fiscal Year'[Date])))
return SWITCH(TRUE(),[Currently_working]="Yes"&&_sum>=50000,"Yes","No")
Or if you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Ideally you should solve this problem with a measure. If you need help with writing a measure, please share some data to work with.
Hi @OPS-MLTSD ,
DATESBETWEEN() returns a table that contains a column of dates that begins with a specified start date and continues until a specified end date.
This function is suited to pass as a filter to the CALCULATE function. Use it to filter an expression by a custom date range.
So you may try:
50000 Earning =
var _sum= CALCULATE(SUM(Clients[Wage]),DATESBETWEEN('Clients'[STARTDATE],MIN('fiscal Year'[Date]), MAX('fiscal Year'[Date])))
return SWITCH(TRUE(),[Currently_working]="Yes"&&_sum>=50000,"Yes","No")
Or if you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
thank you so much! it worked!
Hi,
I think the FILTER() function in DAX can filter rows based on the given conditions.
Here's the link: Using FILTER() as a Table function - Power BI Training Australia
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 53 | |
| 42 | |
| 30 | |
| 24 |