Forum Discussion
DAX calculation for factor correction
- 3 years ago
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.
gregers1972
I'm still trying to guess. Please provide the full picture so that I can understand the requirement. How many tables are invloved in this? What are the relationships?
- gregers19723 years agoFrequent Visitor
It is only a single table. In the data table shown earlier, there is an "A" row in "VarName" with multiple entries with different "timestring" and each "VarValue" (row wise) I need to correct them differently than e.g. "B"
Select_VarValue = select(VarValue), from Table(VarName(A)) #Maybe need to loop over all A's
Select_VarValue = 500 * 'Table'[Select_VarValue] / 32768
- tamerj13 years ago
Community Champion