Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Solved! Go to Solution.
You could try the following:
Test Site Threshold =
VAR ProgramSelected =
SELECTEDVALUE ( 'Master BTPP Report'[Program] )
VAR YearSelected =
SELECTEDVALUE ( 'Master BTPP Report'[Application Received Date].[Year] )
RETURN
IF ( YearSelected = 2019,
SWITCH (
ProgramSelected,
"Charge Ready Bridge",5,
"T1",6,
"T2",7,
"T3",8,
"T4",9,
"T4",10,
0 ),0)
If I answer your question, please mark my post as a solution, this will also help others.
Please give Kudos for support.
Tomas Santandreu Polanco |Principal Business Intelligence Consultant
www.designmind.com
You could try the following:
Test Site Threshold =
VAR ProgramSelected =
SELECTEDVALUE ( 'Master BTPP Report'[Program] )
VAR YearSelected =
SELECTEDVALUE ( 'Master BTPP Report'[Application Received Date].[Year] )
RETURN
IF ( YearSelected = 2019,
SWITCH (
ProgramSelected,
"Charge Ready Bridge",5,
"T1",6,
"T2",7,
"T3",8,
"T4",9,
"T4",10,
0 ),0)
If I answer your question, please mark my post as a solution, this will also help others.
Please give Kudos for support.
Tomas Santandreu Polanco |Principal Business Intelligence Consultant
www.designmind.com
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
8 | |
6 |