Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Solved! Go to Solution.
Thank you all who helped.
I figured it our eventually.
Calc_SOT = CALCULATE( SUM(SOV_SOT[TOTAL TIME IN MIN(Sum)]), ALL(SOV_SOT[BRAND]), REMOVEFILTERS(BRAND_MASTER[BRAND_O/P]))
Try the following measure.
Calc_SOT =
IF (
CALCULATE ( SUM ( SOV_SOT[TOTAL TIME IN MIN(Sum)] ) ) <> BLANK (),
CALCULATE ( SUM ( SOV_SOT[TOTAL TIME IN MIN(Sum)] ), ALLSELECTED ( SOV_SOT ) )
)
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you all who helped.
I figured it our eventually.
Calc_SOT = CALCULATE( SUM(SOV_SOT[TOTAL TIME IN MIN(Sum)]), ALL(SOV_SOT[BRAND]), REMOVEFILTERS(BRAND_MASTER[BRAND_O/P]))
@mohammedmahadik , You need all, if you want ignore the filter. FIlter should work on measure like
Calc_SOT = SUM(SOV_SOT[TOTAL TIME IN MIN(Sum)])
Or use allselcetd
Calc_SOT =
CALCULATE(
SUM(SOV_SOT[TOTAL TIME IN MIN(Sum)]),
ALLSELECTED(BRAND_Master)
)
or
Calc_SOT =
CALCULATE(
SUM(SOV_SOT[TOTAL TIME IN MIN(Sum)]),
ALLSELECTED(BRAND_Master),
VALUES(BRAND_Master[BRAND_SOV])
)
Hey Amit,
It didn't work.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
97 | |
69 | |
46 | |
39 | |
33 |
User | Count |
---|---|
159 | |
107 | |
61 | |
51 | |
40 |