Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi Experts,
Here i am having a scenrio like , Currently we have one “Yes/No” field (Key Accounts) , now I would like it to be changed to below [Any one is Yes, it will become key account]
Key Account definition criteria :
Also below are our thoughts on what defines an account as a Key Account:
So these kind of conditions there for choosing Key Accounts .
I have to apply these formulas on tables , cards & also into bookmarks.
Please help to achieve this ..
Thanks
DK
Solved! Go to Solution.
Hi @dinesharivalaga ,
@foodd , thanks for your concern about this case. I had a try based on the user's requirement. Please check if there is anything that can be improved. Here is my solution:
1.Create a simple data:
2.Create a measure as follows:
Key Account Measure =
IF (
MAX('Table'[Forecasted Revenue]) > 500000 ||
MAX('Table'[Account Type]) = "PACE Account" ||
MAX('Table'[Delivery Model]) = "Embedded Engagement",
"Yes",
"No"
)
3.The final result is shown in the figure:
If you have any other questions please feel free to contact me.
Best Regards,
Zhu
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Hi @dinesharivalaga ,
Since l don't know whether you need a calculated column or a measure, the calculated column code can be added here.
Key Account Measure =
IF (
'Table'[Forecasted Revenue] > 500000 ||
'Table'[Account Type] = "PACE Account" ||
'Table'[Delivery Model] = "Embedded Engagement",
"Yes",
"No"
)
The result is shown in the figure:
Best Regards,
Zhu
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Hi @dinesharivalaga ,
@foodd , thanks for your concern about this case. I had a try based on the user's requirement. Please check if there is anything that can be improved. Here is my solution:
1.Create a simple data:
2.Create a measure as follows:
Key Account Measure =
IF (
MAX('Table'[Forecasted Revenue]) > 500000 ||
MAX('Table'[Account Type]) = "PACE Account" ||
MAX('Table'[Delivery Model]) = "Embedded Engagement",
"Yes",
"No"
)
3.The final result is shown in the figure:
If you have any other questions please feel free to contact me.
Best Regards,
Zhu
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
11 |
User | Count |
---|---|
19 | |
15 | |
14 | |
11 | |
10 |