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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
FabrizioLorito
New Member

Problem with SELECTEDVALUE

Hi

I have a simple data table with years (Anno) ranging from 2021 to 2023

FabrizioLorito_0-1713879446510.png

I have created two tables just with the list of years

f_start = summarize(Dati,Dati[Anno])
f_end = summarize(Dati,Dati[Anno])
I have applied a slicer to both to get a selection of one year from f_start and one for tear f_end  

 

FabrizioLorito_4-1713879797871.png

I want to create a table like this

FabrizioLorito_2-1713879757838.png

Where, corresponding to each Segment, I have the sum of all the values from the selected Start year and from the End year

 

Now, if I build a new table like the following it returns me a blank table:

TabStarEnd =
var s_start=selectedvalue(f_start[Anno])
var s_end=selectedvalue(f_end[Anno])

return

ADDCOLUMNS(    
    SUMMARIZE(
        Dati,
        [Segmento]
    ),
    "Start",CALCULATE(
        SUMX(filter(Dati,Dati[Anno]=s_start),Dati[Ordinato])
    ),
    "End",CALCULATE(
        SUMX(filter(Dati,Dati[Anno]=s_end),Dati[Ordinato])
    )
)

Instead, if I force "2021" and "2023" in s_start and s_end respectively it works (and gives the result I have shown before)

 

Why is function SELECTEDVALUE not working?

Thanks

Fabrizio

 

 

1 ACCEPTED SOLUTION
HotChilli
Super User
Super User

Slicers don't affect calculated columns or tables.

---

You could create 2 measures and use them in a table visual to get what you want.

View solution in original post

1 REPLY 1
HotChilli
Super User
Super User

Slicers don't affect calculated columns or tables.

---

You could create 2 measures and use them in a table visual to get what you want.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors