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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

3 Values, Total Value, Selected Value, Partial Values

Hi all.

 

Well, I have to do 3 Measures.

 

1 Show values all month

2 Show values selected month

3 Show values partial month

 

Ex:

val.PNG

 

 

link with files  https://drive.google.com/open?id=11lCWE0-K-c7J9lAKC9KFnnlq8GAQyhWZ

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous,

 

You can refer to below steps to achieve your requirement.

 

Prerequest:

1. Create two slicer tables based on current table columns.
2. Slicer tables can't contains relationship to original table.

 

Steps:

1 Write formula to create slicer tables:

Value Slicer = VALUES('Records'[Value])
Month Slicer = VALUES('Records'[Month])

2. Create slicer with above table columns.

14.PNG15.PNG

 

3. Write measure based on slicer.

Total Value(All Month) = CALCULATE(SUM('Records'[Value]),ALL('Records'[Month])) 

Total Value(Selected Month) = SUMX(FILTER(ALL('Records'),[Month] in ALLSELECTED('Month Slicer'[Month])),[Value])

Month Detail = CONCATENATEX(FILTER(ALL('Records'),[Value] in ALLSELECTED('Value Slicer'[Value])),[Month],",")

Result:

16.PNG

 

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous,

 

You can refer to below steps to achieve your requirement.

 

Prerequest:

1. Create two slicer tables based on current table columns.
2. Slicer tables can't contains relationship to original table.

 

Steps:

1 Write formula to create slicer tables:

Value Slicer = VALUES('Records'[Value])
Month Slicer = VALUES('Records'[Month])

2. Create slicer with above table columns.

14.PNG15.PNG

 

3. Write measure based on slicer.

Total Value(All Month) = CALCULATE(SUM('Records'[Value]),ALL('Records'[Month])) 

Total Value(Selected Month) = SUMX(FILTER(ALL('Records'),[Month] in ALLSELECTED('Month Slicer'[Month])),[Value])

Month Detail = CONCATENATEX(FILTER(ALL('Records'),[Value] in ALLSELECTED('Value Slicer'[Value])),[Month],",")

Result:

16.PNG

 

Regards,

Xiaoxin Sheng

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.

Top Solution Authors