Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I need help to fixed a date sliced on a colum without change contex by rows.
I tried ALL, ALLSELECTED, ALLEXCEPTED.... but i did't have the expected result.
I would appreciate if anyone can help
------------------
Solved! Go to Solution.
For the solution of this case I wached this video Power BI From and To Date Filtering with One Slicer - YouTube
and before pubished this arcticle to my especific preoblem.
For the solution of this case I wached this video Power BI From and To Date Filtering with One Slicer - YouTube
and before pubished this arcticle to my especific preoblem.
Hi, @amitchandak
thanks but it still didn't work as expected, the date is now with the general minimum, not following the slicer. (Ex. Slicer 01/04/2022 and data 01/01/2021 (Minimum of dimdata)
@thiagocamillo , try like
Calc. Data de Referencia (IRC) =
var vIS =
CALCULATE(
MIN(DimData[Date]),
ALLSELECTED(DimData)
)
return
vIS
or
Calc. Data de Referencia (IRC) =
var vIS =
CALCULATE(
MIN(DimData[Date]),
ALLSELECTED()
)
return
vIS
User | Count |
---|---|
134 | |
72 | |
71 | |
55 | |
53 |
User | Count |
---|---|
199 | |
95 | |
63 | |
62 | |
51 |