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
Hello
I have a table 'fact_kpi'. The values in this table are 'Investment GBP' and the account codes are 'groupcoa and I also have another value that I filter on called 'moves' . I neeed to filter the Investment GBP values based on account code = 1* accounts and moves code = 'BFD' Can you give any advice on how to do this
Many thanks
Paul
FYI - in Qlikview I would have done the below (altho I had to filter by period in qlikview also)
sum({< groupcoa = {'1*'}, period = {"=$(vStartPeriod)"}, moves = {'BFD'}>}[Investment GBP])*-1
@Anonymous Maybe:
Measure =
VAR __Table = FILTER('Table', [moves] = "BFD" && LEFT([Investment GBP],1) = "1")
VAR __Result = SUMX(__Table, [Some Column])
RETURN
__Result
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!