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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bhelou
Responsive Resident
Responsive Resident

A function 'SELECTEDVALUE' has been used in a True/False expression that is used as a table filter

Dear Please if anyone can help me with this measure :

Population =
VAR
Population = CALCULATE(SUM(ESTIMATES[Pop Total Estimates]))
Return
CALCULATE([Pop Total Estimates running total in Year],SELECTEDVALUE('Capitals Unique'[Country]))
@amitchandak  ( thank you for usual help)

// The selected value country is a slicer , once i need to select from it i need the population result 

Many Thanks ,
 
 
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@bhelou , Use filter

 

Population =
VAR
Population = CALCULATE(SUM(ESTIMATES[Pop Total Estimates]))
Return
CALCULATE([Pop Total Estimates running total in Year],filter('Capitals Unique', 'Capitals Unique'[Country] = SELECTEDVALUE('Capitals Unique'[Country])))

 

If these tables are joined, no need to add this clause

 

for more than one value

 

Population =
VAR
Population = CALCULATE(SUM(ESTIMATES[Pop Total Estimates]))
Return
CALCULATE([Pop Total Estimates running total in Year],filter('Capitals Unique', 'Capitals Unique'[Country] in  allselected('Capitals Unique'[Country])))

 

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@bhelou , Use filter

 

Population =
VAR
Population = CALCULATE(SUM(ESTIMATES[Pop Total Estimates]))
Return
CALCULATE([Pop Total Estimates running total in Year],filter('Capitals Unique', 'Capitals Unique'[Country] = SELECTEDVALUE('Capitals Unique'[Country])))

 

If these tables are joined, no need to add this clause

 

for more than one value

 

Population =
VAR
Population = CALCULATE(SUM(ESTIMATES[Pop Total Estimates]))
Return
CALCULATE([Pop Total Estimates running total in Year],filter('Capitals Unique', 'Capitals Unique'[Country] in  allselected('Capitals Unique'[Country])))

 

Thank you @amitchandak  worked verry good , like always many thanksss

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.