Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions,microsoft.public.excel.charting,microsoft.public.excel
external usenet poster
 
Posts: 10
Default Progress bar in spreadsheet?

I am creating a spreadsheet where I will have a long list of projects. One
column represents the completion percentage for the project. I'd like to
display this as a progress bar. If the project is 50% complete, I want the
left half of the cell to be colored in. If it is 75% complete, I want the
left 3/4 of the field to be filled in, etc.

I don't mind doing this manually if there is a way to do so, but I figured
there might be some type of control that can do this.

I have seen reports built in accounting packages and "dashboard" or "metric
tracking" applications that do similar visual representations for individual
line items on reports.

Thanks for your suggestions!!

--


RBear3
..


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions,microsoft.public.excel.charting,microsoft.public.excel
external usenet poster
 
Posts: 2,489
Default Progress bar in spreadsheet?

Hi,

You can not partial shade a single cell. What you can do is use multiple
cells with some conditional formatting.

Have a look at a recent post of my on another forum.
http://www.excelforum.com/showthread...ht=conditional

Cheers
Andy

--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info
"RBear3" wrote in message
...
I am creating a spreadsheet where I will have a long list of projects. One
column represents the completion percentage for the project. I'd like to
display this as a progress bar. If the project is 50% complete, I want the
left half of the cell to be colored in. If it is 75% complete, I want the
left 3/4 of the field to be filled in, etc.

I don't mind doing this manually if there is a way to do so, but I figured
there might be some type of control that can do this.

I have seen reports built in accounting packages and "dashboard" or
"metric tracking" applications that do similar visual representations for
individual line items on reports.

Thanks for your suggestions!!

--


RBear3
.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions,microsoft.public.excel.charting,microsoft.public.excel
external usenet poster
 
Posts: 1,549
Default Progress bar in spreadsheet?

Another way...
You can use a formula to show a simple bar whose length varies
depending on the value in a cell.
If the value 28 is in cell B5, then try this formula in C5...
=REPT("n",B5/4).
Assign the Wingdings font to cell C5 and adjust the font size.
Customize as desired.
--
Jim Cone
Portland, Oregon USA



"RBear3"

wrote in message
I am creating a spreadsheet where I will have a long list of projects. One
column represents the completion percentage for the project. I'd like to
display this as a progress bar. If the project is 50% complete, I want the
left half of the cell to be colored in. If it is 75% complete, I want the
left 3/4 of the field to be filled in, etc.
I don't mind doing this manually if there is a way to do so, but I figured
there might be some type of control that can do this.
I have seen reports built in accounting packages and "dashboard" or "metric
tracking" applications that do similar visual representations for individual
line items on reports.
Thanks for your suggestions!!
--
RBear3
..


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions,microsoft.public.excel.charting,microsoft.public.excel
external usenet poster
 
Posts: 8,856
Default Progress bar in spreadsheet?

You could achieve this in an adjacent column - assuming your
percentage is in A1, then put this in B1:

=REPT("|",100*A1)

Format the cell to, say, Red, and copy down.

You could apply conditional formatting to have, say, Blue with the
formula =A1=0.75, and Green with =A1=0.5 and Yellow with A1=0.25,
so that the colour changes with progress of the project.

Hope this helps.

Pete

On Jun 18, 2:03*pm, "RBear3" wrote:
I am creating a spreadsheet where I will have a long list of projects. *One
column represents the completion percentage for the project. *I'd like to
display this as a progress bar. *If the project is 50% complete, I want the
left half of the cell to be colored in. *If it is 75% complete, I want the
left 3/4 of the field to be filled in, etc.

I don't mind doing this manually if there is a way to do so, but I figured
there might be some type of control that can do this.

I have seen reports built in accounting packages and "dashboard" or "metric
tracking" applications that do similar visual representations for individual
line items on reports.

Thanks for your suggestions!!

--

RBear3
.


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions,microsoft.public.excel.charting,microsoft.public.excel
external usenet poster
 
Posts: 2,489
Default Progress bar in spreadsheet?

Seeing the other guys suggestions of using the REPT function I thought I
better clarify my statement, "You can not partial shade a single cell".
Using the built-in Cell Shading you can not partial shade..

Cheers
Andy

--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info
"Andy Pope" wrote in message
...
Hi,

You can not partial shade a single cell. What you can do is use multiple
cells with some conditional formatting.

Have a look at a recent post of my on another forum.
http://www.excelforum.com/showthread...ht=conditional

Cheers
Andy

--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info
"RBear3" wrote in message
...
I am creating a spreadsheet where I will have a long list of projects.
One column represents the completion percentage for the project. I'd like
to display this as a progress bar. If the project is 50% complete, I want
the left half of the cell to be colored in. If it is 75% complete, I want
the left 3/4 of the field to be filled in, etc.

I don't mind doing this manually if there is a way to do so, but I
figured there might be some type of control that can do this.

I have seen reports built in accounting packages and "dashboard" or
"metric tracking" applications that do similar visual representations for
individual line items on reports.

Thanks for your suggestions!!

--


RBear3
.






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions,microsoft.public.excel.charting,microsoft.public.excel
external usenet poster
 
Posts: 10
Default Progress bar in spreadsheet?

Thanks! All of these suggestions are helpful.

--
RBear3
..

"Pete_UK" wrote in message
...
You could achieve this in an adjacent column - assuming your
percentage is in A1, then put this in B1:

=REPT("|",100*A1)

Format the cell to, say, Red, and copy down.

You could apply conditional formatting to have, say, Blue with the
formula =A1=0.75, and Green with =A1=0.5 and Yellow with A1=0.25,
so that the colour changes with progress of the project.

Hope this helps.

Pete

On Jun 18, 2:03 pm, "RBear3" wrote:
I am creating a spreadsheet where I will have a long list of projects. One
column represents the completion percentage for the project. I'd like to
display this as a progress bar. If the project is 50% complete, I want the
left half of the cell to be colored in. If it is 75% complete, I want the
left 3/4 of the field to be filled in, etc.

I don't mind doing this manually if there is a way to do so, but I figured
there might be some type of control that can do this.

I have seen reports built in accounting packages and "dashboard" or
"metric
tracking" applications that do similar visual representations for
individual
line items on reports.

Thanks for your suggestions!!

--

RBear3
.



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions,microsoft.public.excel.charting,microsoft.public.excel
external usenet poster
 
Posts: 23
Default Progress bar in spreadsheet?

You will need to set the column width to the 100% size. Also, you can
use Niagara Solid or Stencil fonts to create a solid line.
  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions,microsoft.public.excel.charting,microsoft.public.excel
external usenet poster
 
Posts: 99
Default Progress bar in spreadsheet?

You have already had some good suggestions.

One of my old blog posts may be of help.

Look at http://www.edferrero.com/Blog/tabid/...1/Default.aspx
and scroll about half way down - to More on Excel 2007 Conditional Formats
(and Excel 2003)

My blog is a little bit broken at the moment, sorry, but this should get you
there.

Ed Ferrero
www.edferrero.com

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Progress bar in spreadsheet? RBear3 Excel Worksheet Functions 7 June 19th 08 10:25 AM
Progress Bar Jase Excel Discussion (Misc queries) 0 June 2nd 08 07:45 PM
PROGRESS BAR Ola2B Excel Discussion (Misc queries) 2 July 11th 07 08:13 PM
Progress bar [email protected] Excel Discussion (Misc queries) 1 January 6th 07 01:49 PM
Progress YTD Lance Charts and Charting in Excel 1 March 29th 05 07:16 PM


All times are GMT +1. The time now is 07:07 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"