Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello,
I need to multiply each value in a column by a value that can be altered. I have checked this post here
http://community.powerbi.com/t5/Desktop/Multiply-column-values-by-a-number-which-can-be-altered-on-t...
But I guess the purpose in that post was to multiply one single value by another number, not each single value in a column, because when I tried to apply the measure it told me that it can not be applied on multiple values.
Am I missing something?
Thanks in advance
Solved! Go to Solution.
@jubrna01,
You can create a measure using similar DAX below.
Measure = MAX('Yourtable'[yourcolumn] )* MAX([alteredColumn])
Also you can take use of what if parameter in Power BI Desktop.
If you still get errors, please share sample data of your table and post your dax here.
Regards,
Lydia
In case some one have the same problem, this is the final solution
Total Adj Sales ALT 2 = SUMX ( 'Table', SWITCH ( TRUE (), 'Table'[Adjustment] = "b", 'Table'[Sales] * what_if_parameter, 'Table'[Adjustment] = "c", 'Table'[sales] * what_if_parameter, 'Table'[Sales] ) )
@jubrna01,
You can create a measure using similar DAX below.
Measure = MAX('Yourtable'[yourcolumn] )* MAX([alteredColumn])
Also you can take use of what if parameter in Power BI Desktop.
If you still get errors, please share sample data of your table and post your dax here.
Regards,
Lydia
In case some one have the same problem, this is the final solution
Total Adj Sales ALT 2 = SUMX ( 'Table', SWITCH ( TRUE (), 'Table'[Adjustment] = "b", 'Table'[Sales] * what_if_parameter, 'Table'[Adjustment] = "c", 'Table'[sales] * what_if_parameter, 'Table'[Sales] ) )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
95 | |
69 | |
44 | |
38 | |
30 |
User | Count |
---|---|
159 | |
98 | |
60 | |
42 | |
42 |