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
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
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!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 17 | |
| 14 | |
| 13 |