Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don'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.

Reply
BIuser09
New Member

apply slicer values in virtual table

Hi,

I would like to have a measure obtaining a virtual table where all my slicers (15) selections or non-selections are applied to. With this filtered table, I still have to perform several actions to get my final measure. 

Using SUMMARIZE should keep all filters, is what I've read.

There is 1 fact table (v_BI_DATA_AG), 1 calendar table (Calendar) and 2 dimension tables (v_Product_AG and vGeoAG). All relations are set.

Below does not work. Result is not filtered automatically according to all 15 slicer selections. it's not filtered at all.

How should I solve this ? Another way ?

 

Side question: SELECTEDVALUE only returns when 1 option in slicer is selected. How handle no selection ? And multiple selections ?

 

 

VAR SelectedMonth = SELECTEDVALUE('Calendar'[YearMonth])
VAR SelectedQuarter = SELECTEDVALUE('Calendar'[Quarter])
VAR SelectedYear = SELECTEDVALUE('Calendar'[Year])

//defining month/Q/Y
VAR curMonth = IF(NOT ISBLANK(SelectedMonth) ,
                    SelectedMonth,
                    IF(NOT ISBLANK(SelectedQuarter),
                        LEFT(SelectedQuarter,4) & IF(LEN(3* RIGHT(SelectedQuarter,1))<2,"0" & 3* RIGHT(SelectedQuarter,1),3* RIGHT(SelectedQuarter,1)),
                        SelectedYear & 12
                        )
                    )
 
VAR Curinventory = CALCULATE(SUM(v_BI_DATA_AG[Value]), v_BI_DATA_AG[TYPE]="IN", 'v_BI_DATA_AG'[Month] = CONVERT(curMonth,INTEGER) ) 
 
VAR LoopTable = SUMMARIZE( 'v_BI_DATA_AG' , 'Calendar'[YearMonth], v_BI_DATA_AG[cycle], v_Product_AG[Business], v_BI_DATA_AG[NF], vGeoAG[Region], vGeoAG[Sub Region], vGeoAG[Area],
                        vGeoAG[Market], v_Product_AG[Plant], v_Product_AG[Model], v_Product_AG[PL], v_Product_AG[Brand]
                        v_Product_AG[Family]
                        "SalesMonth", CALCULATE(sum(v_BI_DATA_AG[Value]), v_BI_DATA_AG[TYPE] = "SALES"),
                        "I", CALCULATE(sum(v_BI_DATA_AG[Value]), v_BI_DATA_AG[TYPE] = "IN")
                        )
1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Instead of SELECTEDVALUE use VALUES.  Learn about TREATAS too.

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

Instead of SELECTEDVALUE use VALUES.  Learn about TREATAS too.

thanks ! using VALUES to capture slicer selection(s) solved it.

However, they have to be defined in top of measure as variables, not to use directly in SUMMARIZE function

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.