Forum Discussion
Anonymous
4 years agoNot applicable
Get Calculation based on the Filtered Selection
Hi, I'm trying to calculate Outliers by IQR method for which I need to first calculate Quartile 1 and Quartile 3 for the below data. Store Brand Qty_ordered 1 A 162 2 A 119 3 ...
- 4 years ago
Anonymous , use selected value or max
CALCULATE(PERCENTILE.INC([total_qty_ordered],0.25),IF(ISFILTERED([brand_label]),filter(Table[brand_label]=selectedvalue([brand_label])),AllSelected()))
amitchandak
4 years agoSuper User
Anonymous , use selected value or max
CALCULATE(PERCENTILE.INC([total_qty_ordered],0.25),IF(ISFILTERED([brand_label]),filter(Table[brand_label]=selectedvalue([brand_label])),AllSelected()))
- Anonymous4 years agoNot applicable
Filter works with table, not able to work with a column
also AllSelected() is not taking in if function