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
Hi
I have a table with responses to a questionaire. In the answers column there will be a mix of text and number e.g.
Q: Enter some text | This is text
Q: Enter a number | 8
What I need is a measure that does an average of the question "Q: Enter a number"
What I have so far is:
Solved! Go to Solution.
Hi @MCornish
try a measure
Measure = calculate(
averagex(
FILTER(ALL(Table2);
NOT(ISERROR(VALUE(Table2[Answer])))
);
VALUE(Table2[Answer])))
do not hesitate to give a kudo to useful posts and mark solutions as solution
Hi @MCornish
try a measure
Measure = calculate(
averagex(
FILTER(ALL(Table2);
NOT(ISERROR(VALUE(Table2[Answer])))
);
VALUE(Table2[Answer])))
do not hesitate to give a kudo to useful posts and mark solutions as solution
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 37 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 130 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |