Forum Discussion
DAX formula optimization question
- Anonymous9 years ago
Hi,
Are you experiencing performance issues with your current formula? How large is the table where you want to create the new column?
Another way to create the desired column could be to try:
VIP Calculation = Switch(True();
Candidate[Todays_commitment_rate__c] = 0 ;"100% VIP";
Candidate[Todays_commitment_rate__c] < 100 ;"Partial VIP";
Blank()
)Try and see if the performance is improved.
BR,
Magnus
Hi,
Are you experiencing performance issues with your current formula? How large is the table where you want to create the new column?
Another way to create the desired column could be to try:
VIP Calculation = Switch(True();
Candidate[Todays_commitment_rate__c] = 0 ;"100% VIP";
Candidate[Todays_commitment_rate__c] < 100 ;"Partial VIP";
Blank()
)
Try and see if the performance is improved.
BR,
Magnus
Hi Magnus,
Thank you very much, the performance increased by adding the Switch functionality to the equation.
Greetings,
Ronald