Forum Discussion
gregers1972
3 years agoFrequent Visitor
DAX calculation for factor correction
Good Morning I have a small issue with some data, where they need to be rescaled as follows. Lets say we have a pressure value p_i (i = 1 - n) and I need to scaled this as : p_i_scaled = (p_i / 3276...
- 3 years ago
gregers1972
3 years agoFrequent Visitor
The first datatable was not so easy to read but here again with 3 series and 5 parameters and values.
tamerj1
Community Champion
3 years agoHi gregers1972
I was talking about the expected results. Please illustrate with an example calculation
- gregers19723 years agoFrequent Visitor
For the first row with p_i = 345.3 the calculation is:
p_i_corrected = (345.3 / 32768) * 500 = 5.27
- tamerj13 years ago
Community Champion
Not sure if I correctly understand but you may create a new calculated column
500 * 'Table'[VarValue] / 32768
- gregers19723 years agoFrequent Visitor
Thanks and thought the actual calculation would be like this. The trick is that there are several values in multiple rows for the same parameter e.g. A for different timepoints, which must be selected and corrected individually.