You need to use "Courier New" font (or any other courier series font) to get the uniform label feel.
One more variation would be:
=REPLACE(REPT(" ",32),1,LEN(REPT("o",A2*30)),REPT("o",A2*30))&TEXT(A2, "0%")
Font to be used "Courier New" which is Fixed Pitch font. It will place value labels uniformly!
what's the meaning of REPLACE(REPT(" ",32) with REPT(" ",32)
what's the meaning of REPLACE(REPT(" ",32) with REPT(" ",32)
thanks for sharing the use of rept functionHey FIFA,
Firstly welcome to our family!.
REPT function is use for repeats text a given number of times
REPT(" ",32)
with reference of above formula, the REPT function create " " 32 times.
REPLACE(REPT(" ",32)
with reference of above formula, REPT(" ",32) is the first argument of REPLACE function.
thanks for sharing the use of rept function
but in the Attached Files the a2 cell,b2 cell has no 32 times " ",why?