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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
hi team ,
i have calculate purchese amount and cy purchese amount
cy (current year) purchase amount not correct
1.Purchase Bill Amount =
CALCULATE(SUM('PURCHASE ORDER BILL'[GSTASSVALUE]),'PURCHASE ORDER BILL'[OTHER]="PURCHASE BILL")/SELECTEDVALUE(DISPLAYAMOUNT[DIVFACT])
how to solve this
Solved! Go to Solution.
Hi @rajasekaro,
Thank you for reaching out to Microsoft Fabric Community Forum.
@pankajnamekar25 Thank you for your quick response.
Could you please share a small sample of your input data (without any sensitive or confidential information), along with the expected output and a clear explanation of your requirement? This will help us understand your scenario better and provide an accurate solution. A few representative rows and a brief description of the logic or transformation you're expecting would be really helpful.
Regards,
B Manikanteswara Reddy
Hi @rajasekaro ,
As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?
If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.
Regards,
B Manikanteswara Reddy
Hi @rajasekaro ,
As we haven’t heard back from you, we will go ahead and close this ticket for now.
If you need any further assistance, please don’t hesitate to raise a new ticket, we’re always happy to help.
Our sincere apologies if there was any inconvenience caused.
Regards,
B Manikanteswara Reddy
Hi @rajasekaro ,
As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?
If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.
Regards,
B Manikanteswara Reddy
Hi @rajasekaro ,
We would like to follow up to see if the solution provided by the super user resolved your issue. Please let us know if you need any further assistance.
If our super user response resolved your issue, please mark it as "Accept as solution" and click "Yes" if you found it helpful.
Regards,
B Manikanteswara Reddy
Hi @rajasekaro,
Thank you for reaching out to Microsoft Fabric Community Forum.
@pankajnamekar25 Thank you for your quick response.
Could you please share a small sample of your input data (without any sensitive or confidential information), along with the expected output and a clear explanation of your requirement? This will help us understand your scenario better and provide an accurate solution. A few representative rows and a brief description of the logic or transformation you're expecting would be really helpful.
Regards,
B Manikanteswara Reddy
Hello @rajasekaro
try this measure
CY PBill Amount =
VAR FullYTD =
CALCULATE(
[Purchase Bill Amount],
DATESYTD('Calendar'[Date], "3/31")
)
VAR MonthlyValue =
CALCULATE([Purchase Bill Amount])
RETURN
IF(
ISINSCOPE('Calendar'[Month]),
MonthlyValue,
FullYTD
)
Thanks,
Pankaj Namekar | LinkedIn
If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.
no changes
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.