Forum Discussion
Progress bars
- 6 years ago
Hi victoriashenton ,
We can use the condition format in matrix visual to meet your requirement, but the progress bars is the round.
OR you can try to use the measure
ProgressBar = SWITCH ( MAX ( 'StatusTable'[Status ID] ), 1, UNICHAR ( 9646 ) &UNICHAR ( 9647 ) & UNICHAR ( 9647 ), 2, UNICHAR ( 9646 ) & UNICHAR ( 9646 ) & UNICHAR ( 9647 ), 3, UNICHAR ( 9646 ) &UNICHAR ( 9646 ) & UNICHAR ( 9646 ) )We can also use the bullet visual, please refer to this similar thread: https://community.powerbi.com/t5/Desktop/How-to-get-a-way-to-make-a-Progress-bar/td-p/94612
BTW, pbix as attached.Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi victoriashenton ,
We can use the condition format in matrix visual to meet your requirement, but the progress bars is the round.
OR you can try to use the measure
ProgressBar =
SWITCH (
MAX ( 'StatusTable'[Status ID] ),
1, UNICHAR ( 9646 ) &UNICHAR ( 9647 ) & UNICHAR ( 9647 ),
2, UNICHAR ( 9646 ) & UNICHAR ( 9646 ) & UNICHAR ( 9647 ),
3, UNICHAR ( 9646 ) &UNICHAR ( 9646 ) & UNICHAR ( 9646 )
)
We can also use the bullet visual, please refer to this similar thread: https://community.powerbi.com/t5/Desktop/How-to-get-a-way-to-make-a-Progress-bar/td-p/94612
BTW, pbix as attached.
Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
That's great thank you very much for the assistance. It was just what I was looking for!