Forum Discussion
as1195
2 years agoHelper I
How to hide blank rows in table visual without using visual level filter
Hi , I have the table visual wher Price and Last Updated Date are measures and I have "Out Of Date" Slicer. Upon clicing on out of date slicer the below table should reflect only those Id rows whe...
Sahir_Maharaj
2 years agoSuper User
Hello as1195 ,
Can you please try this:
1. Create a New Calculated Table
FilteredTable =
FILTER(
YourOriginalTable,
DATEDIFF(YourOriginalTable[Last Updated Date], TODAY(), DAY) <= 365
)2. Use the New Calculated Table in Your Visual
3. Configure the "Out Of Date" Slicer: Make sure your "Out Of Date" slicer is correctly configured to filter the "FilteredTable" based on your slicer selections.
Should you require further details or information, please do not hesitate to reach out to me.
- as11952 years agoHelper I
Hi Sahir,
Thank You for the reply.
I cannot use the filter function here as it replicates the whole target table with the condition.The example which I provided earlier was just sample but in real time I have a very big fact table and also the table in visualization included other Dax measures also