Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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