Hi,
I have a measure always filtered by one text column (Type Name):
These values are historized on a quarterly basis (with the first date of the quarter). And now I need to implement the following logic: when evaluating multiple quarters at the same time (for example, having multiple choice in the date column filter), the measure numbers should be averaged. In the case of one quarter, the values should be summarized.
I can't think of any ideas, so any tips will help me!
Thanks in advance
Kylie
Solved! Go to Solution.
Hi @Kylie,
You can write a measure with a switch function to check the filter selections, then you can navigate to the different expressions based on the selected value.
formula =
VAR selceted =
SELECTEDVALUE ( NewTable[Type Name] )
RETURN
SWITCH (
selceted,
"Sum", SUM ( Table[Sale] ),
"Average", AVERAGE ( Table[Sale] )
)
Regards,
Xiaoxin Sheng
Hi @Kylie,
You can write a measure with a switch function to check the filter selections, then you can navigate to the different expressions based on the selected value.
formula =
VAR selceted =
SELECTEDVALUE ( NewTable[Type Name] )
RETURN
SWITCH (
selceted,
"Sum", SUM ( Table[Sale] ),
"Average", AVERAGE ( Table[Sale] )
)
Regards,
Xiaoxin Sheng
Hi Kylie:
Please see attached file with the results I hope you are excpecting.
https://drive.google.com/file/d/1JFg76rkWlb4PgO361geAg5Jz_ImVTawk/view?usp=sharing
I have set up a file with a basic model and calulations. If you select one quarter,the results are just for that Qtr, when selecting multiple Q's the results are averaged. I used some made up data to demonstrate.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
102 | |
36 | |
35 | |
29 | |
23 |
User | Count |
---|---|
121 | |
49 | |
44 | |
35 | |
22 |