March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello all,
I have a multiple answer question and I want to make a bar visual which is something I know how to do. What I want is to show only options that have 3% higher and show other option instead of these options that are below 3% and show a small hint underneath thus bar saying other options include 1, 3 blah blah... can you please help!
Regards, Hanna
Solved! Go to Solution.
hi @Hjameelaq ,
try to write a calculated column like:
Column =
DIVIDE(
data[value],
SUM(data[value])
)
How do we calculate the sum of all values for a column to be able to calcuate the % for each ?
hi @Hjameelaq ,
try to write a calculated column like:
Column =
DIVIDE(
data[value],
SUM(data[value])
)
I will give this a try, how can we show these options on table like saying
Others is blah blah blah...
hi @Hjameelaq ,
supposing you have two columns: answer and percentage, try to plot the barchart with two calculated columns:
answer2 =
IF([percentage]>=0.03, [answer], "Others")
Percentage2 =
IF(
[answer]=[answer2],
[percentage],
SUMX(
FILTER(data, data[answer2]="Others"),
data(percentage)
)
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
16 | |
16 | |
12 |