Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I'm trying to duplicate the STANDARDIZE() function available in Exel in order to generate a standardized ratio, or z-score.
z= (x - m) / sd
How would I write a formula for this?
I'm assuming you have a data table that has the X and SD values, and you can calculate the population mean from the data?
I would create a measure in the following form:
Zscore =
var popMean = calculate(average(Table[Value]),all(Table)),
return (table[Value] - popMean) / table[SD]
Note: you could calculate the SD if necessary using another variable like popMean
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 44 | |
| 40 | |
| 29 | |
| 19 |
| User | Count |
|---|---|
| 200 | |
| 129 | |
| 103 | |
| 72 | |
| 56 |