Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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
User | Count |
---|---|
84 | |
79 | |
71 | |
48 | |
43 |
User | Count |
---|---|
111 | |
54 | |
50 | |
40 | |
40 |