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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
nicolast29
Helper V
Helper V

selectedvalues in Excel PowerPivot

https://1drv.ms/u/s!AoqtZHsX4Bzvg_gO4DA7tR5F5XABhw?e=GEeEAy 

 

Hi

I have made a calculated column a table (Balance) in order to recover a information from another table in my bi report, it work great ...

 

 

catégorie PCG = 
Var Compte_Pcg ='Balance'[Compte]
Var fouchette_correspondante =FILTER(fourchettes, Compte_Pcg>=fourchettes[Début] && Compte_Pcg <= fourchettes[Fin])
return
CALCULATE(SELECTEDVALUE(fourchettes[Catégorie]),fouchette_correspondante)

 

 

 

but at the end the user wanted it only in Excel, so I try to transform it but selectedvalues is missing

I have made a lot of try with for example with  IF ( HASONEVALUE ( Table[column] ), VALUES ( Table[column] ) ), but it always ended with error

There is something that i does missandertand i think

 

I put in attached file the pbix (cc.pbix) and the Excel file (cc.xlsb)

 

 

Thanks a lot for helping

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@nicolast29 , You need to some expression to return one value there like max , try

 

catégorie PCG =
Var Compte_Pcg ='Balance'[Compte]
Var fouchette_correspondante =FILTER(fourchettes, Compte_Pcg>=fourchettes[Début] && Compte_Pcg <= fourchettes[Fin])
return
CALCULATE(max(fourchettes[Catégorie]),fouchette_correspondante)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@nicolast29 , You need to some expression to return one value there like max , try

 

catégorie PCG =
Var Compte_Pcg ='Balance'[Compte]
Var fouchette_correspondante =FILTER(fourchettes, Compte_Pcg>=fourchettes[Début] && Compte_Pcg <= fourchettes[Fin])
return
CALCULATE(max(fourchettes[Catégorie]),fouchette_correspondante)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

thanks a lot

It works

If i understant, whitout the max it return a table who is a problem, but with the max it return a single value and that it ?

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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