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
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
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

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.