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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello Guys,
I'm trying to develop a report. I'am using a query from out Dynamics NAV.
This gives me the follwing information:
GL Account No and Amount. I want to do the following. I want to the amount specified by a range of GL Accounts No.
I want to create a measure.
I've tried the following:
Recurring Rev =
Calculate(Sum(RecREV[Amount]);Filter(RecREV[GL AccountNo] >= "8000" .. "8089")
Or
Calculate(Sum(RecREV[Amount]);Filter(RecREV[GL AccountNo] >= "8000" & <= "8089")
Using multiple filters is way to much work if I want to make a very specified range.
I hope you guys can help me out!
Solved! Go to Solution.
Hi, GL AccountNo is a text field?
If is a number field you can try with:
M =
CALCULATE (
SUM ( RecREV[Amount] );
FILTER ( RecREV; RecREV[GL AccountNo] >= 8000 && RecREV[GL AccountNo] <= 8089 )
)Regards
Victor
Lima - Peru
Hi,
Try this
=CALCULATE(SUM(RecREV[Amount]);RecREV[GL AccountNo] >= 8000;RecREV[GL AccountNo] <= 8089)
Hope this helps.
Hi, GL AccountNo is a text field?
If is a number field you can try with:
M =
CALCULATE (
SUM ( RecREV[Amount] );
FILTER ( RecREV; RecREV[GL AccountNo] >= 8000 && RecREV[GL AccountNo] <= 8089 )
)Regards
Victor
Lima - Peru
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!