I have 2 cells
Budget: X
Allocated: Y
I want to show in cell 3 how much % of budget is allocated.
i can get the percent value by doing (Y/X)%. i can get the number value here.
i want to show something similar to progress bar wherein i can fill certain characters inside a cell to show the allocation.
Solution so far:
Problems: i can fill a cell with certain characters like
Budget: X
Allocated: Y
I want to show in cell 3 how much % of budget is allocated.
i can get the percent value by doing (Y/X)%. i can get the number value here.
i want to show something similar to progress bar wherein i can fill certain characters inside a cell to show the allocation.
Solution so far:
The problem is that i get library error on some excel versions.REPT("",MAX(0,H11*(CELL("width",INDIRECT("C",0))-5)))
Problems: i can fill a cell with certain characters like
but cant use it if user changes the cell width.
