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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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