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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I need help on Dax for calculating the number of positions that are carryforwarded to the next year. I am getting the wrong value.
The Dax which i am using is
Hi @Anonymous ,
You can try modifying dax to the following:
carry =
CALCULATE(
COUNTX(
FILTER(ALL(TA),
AND(
[Open Date (DD-MMM-YYYY)]<=MAX('Dim_Date'[Date]),ISBLANK('TA'[Joining Date MM/DD/YYYY]))
||
'TA'[Joining Date MM/DD/YYYY]>MAX('Dim_Date'[Date])),'TA'[Req ID]),
FILTER(ALL('Dim_Date'),'Dim_Date'[Year]='Dim_Date'[Year]-1))
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you
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.
@Anonymous , refer if this blog can help
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.