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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Dear, good afternoon!
Please could you help me I have two formulas in dax, one to calculate data until 30/09/2022 and another current formula to calculate from 01/10/2022.
I'm in need of a variable function that, when created, can apply these applications as I filter the data segmentation.
Example of the forms I have:
40_Difereca_Horas_=
"This calculation from 01/10/2022 onwards"
var current_function = CALCULATE([07_Difference_Horas_Contradas_Segurança])
"This calculates until 30/09/2022
var previous_function =
CALCULATE([24_Difference_Hours_Security])
Att.
Robson
Solved! Go to Solution.
Hi @AndradeRobson ,
I created some data:
Here are the steps you can follow:
1. Create calculated column.
Group =
var _date1=DATE(2022,1,10)
var _date2=DATE(2022,9,30)
return
SWITCH(
TRUE(),
'Table'[Date] >=_date1&&'Table'[Date]<_date2,1,
'Table'[Date]>=_date2,2
,3)
2. Create measure.
Measure =
SUMX(FILTER(ALL('Table'),'Table'[Group]=MAX('Table'[Group])),[Amount])
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @AndradeRobson ,
I created some data:
Here are the steps you can follow:
1. Create calculated column.
Group =
var _date1=DATE(2022,1,10)
var _date2=DATE(2022,9,30)
return
SWITCH(
TRUE(),
'Table'[Date] >=_date1&&'Table'[Date]<_date2,1,
'Table'[Date]>=_date2,2
,3)
2. Create measure.
Measure =
SUMX(FILTER(ALL('Table'),'Table'[Group]=MAX('Table'[Group])),[Amount])
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!