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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi all
I have a measure to count the maximum fiscal month value, however I have to exclude those value less or equal to 100. Please can anyone advise me how to adjust the DAX below to exclude the value 100 and under? Thanks.
YTD Data = var Max_Data_date = MAX ( 'Data'[Date] )
var FiscalMth = Calculate ( Max ( dim_Dates[Fiscal Month] ),
Filter ( dim_Dates , 'dim_Dates'[Dates] = Max_Data_date )
)
return
CALCULATE ( [Count Data] ,
filter ( dim_Dates , 'dim_Dates'[Fiscal Month] = FiscalMth )
) + 0
Solved! Go to Solution.
@Apple08 , > 100 based on what. One example
return
CALCULATE ( Sumx(filter(Values(dim[Customer]), [Count Data] >100), [Count Data])
filter ( dim_Dates , 'dim_Dates'[Fiscal Month] = FiscalMth )
) + 0
Thanks amitchandak for your prompt response. I have added in a comma after [Count Data]) at the end of the first row and it works perfectly. Many thanks for your help.
@Apple08 , > 100 based on what. One example
return
CALCULATE ( Sumx(filter(Values(dim[Customer]), [Count Data] >100), [Count Data])
filter ( dim_Dates , 'dim_Dates'[Fiscal Month] = FiscalMth )
) + 0
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 51 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |