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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have the following
Hi @sustainhort
Please try
Source Use Gain Production =
CALCULATE (
SUM ( 'Business Crop Schedule'[Value] ),
FILTER (
VALUES ( 'Business Crop Schedule'[Sub Type] ),
'Business Crop Schedule'[Sub Type] = "Production Number"
)
)
or
Source Use Gain Production =
CALCULATE (
SUM ( 'Business Crop Schedule'[Value] ),
KEEPFILTERS ( 'Business Crop Schedule'[Sub Type] = "Production Number" )
)
Hi,
I am not sure how your datamodel looks like, but I assume the column that you want to filter inside the measure is sorted by another column. If my assumption is correct, please try inserting that column as well into the measure.
Source Use Gain Production =
CALCULATE (
SUM ( 'Business Crop Schedule'[Value] ),
FILTER (
ALL (
'Business Crop Schedule'[Sub Type],
'Business Crop Schedule'[Sub Type Index number]
),
'Business Crop Schedule'[Sub Type] = "Production Number"
)
)
Hi thanks for replying, it is filter from another data table what would be the workaround for that cheers
User | Count |
---|---|
9 | |
8 | |
6 | |
4 | |
3 |