Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi All - I have a nice little worksheet where cells change color from Red to Yellow to Green, as the users update their "percent complete" in their own local worksheets. Since there are many users and many processes per user, I have transposed the cell values and formats onto the next sheet, so that it shows management a graphical snapshot of where we are without all the clutter. Problem is - the graph is "transposed" upside down. How can I get it to transpose in reverse order to get my graph rightside up? Here is the code that I'm running now. Any help would be appreciated. Sheets("Process Flows").Select destcol = 3 For rowtocopy = 7 To 200 'Call the function for 200 rows so the processes can be added If IsInclusive(rowtocopy) Then destcol = destcol + 1 Range(Cells(rowtocopy, 15), Cells(rowtocopy, 30)).Select Selection.Copy Sheets("CRP Status").Select Cells(6, destcol).Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:= _ False, Transpose:=True Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, SkipBlanks:= _ False, Transpose:=True Sheets("Process Flows").Select End If Next rowtocopy Regards, John |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reverse Transpose? | Excel Worksheet Functions | |||
how paste transpose reverse? | Excel Discussion (Misc queries) | |||
How do I transpose the figures to go in reverse order in a bar gr. | Charts and Charting in Excel | |||
reverse value | Excel Worksheet Functions | |||
I WANT TO TRANSPOSE LINKS, AS WE TRANSPOSE VALUES | Excel Worksheet Functions |