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.
I have a sales target of 100 for the company.
I have 5 locations.
I want to distribute the 100 evenly across the 5 locations using Dax.
Location Target
1 20
2 20
3 20
4 20
5 20
I don't want to duplicate the code 5 times, I want 1 dax query that will take the 100 as input and the 5 locations, and output 20 for each location.
Hi @djm7 ,
Just checking in to see if you query is resolved and if any responses were helpful. If so, kindly consider marking the helpful reply as 'Accepted Solution' to help others with similar queries.
Otherwise, feel free to reach out for further assistance.
Thank you.
Hi @djm7 ,
Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.
If these also don't help, please share more detailed information and description to help us clarify your scenario to test.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
HI @djm7,
You can try to use following measure formula to calculate the average target based on current location amounts:
formula =
VAR inputted = 100
VAR locationCount =
CALCULATE ( COUNTROWS ( VALUES ( Table1[Location] ) ), ALLSELECTED ( Table1 ) )
RETURN
DIVIDE ( inputted, locationCount, -1 )
Regards,
Xiaoxin Sheng
Is this to add a column to a existing table, or create a new table. Will the 100 be from a existing table?