Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a spreadsheet with column A and column B. B contains different
supplier names. Column A contains a region such as EU, NA, LA. However the region is only in the first cell of the list it matches in column B. Just like if I had created a pivot table from a list of data with region and supplier. Each region would only show once because the suppliers are being grouped by region. I need to be able to quickly copy down the region in column A where there is a Region name above. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On May 5, 4:55*pm, juliejg1
wrote: I have a spreadsheet with column A and column B. *B contains different supplier names. *Column A contains a region such as EU, NA, LA. *However the region is only in the first cell of the list it matches in column B. *Just like if I had created a pivot table from a list of data with region and supplier. *Each region would only show once because the suppliers are being grouped by region. *I need to be able to quickly copy down the region in column A where there is a Region name above. You can use a simple if statement to do this. Create a new column labeled the same as your Column A =if(isblank(cellA3),CellB2,CellA3) A B C Row 1 Region Type Region Row 2 a 1 a Row 3 2 a Formual in C3 and down "=IF(ISBLANK(A3),C2,A3)" You will need to seed the first cell with the actual value of "A2". Then you drag formula down, copy column, paste special over your original column A, then delete the column you created. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
- Select the cells in the Region column (those with data and those that need
to be filled in). - Select Edit Go to. Check the Blanks option, then click OK. - Press = (the Equals key), then the Up arrow. Press Enter while holding down the Ctrl key. - Copy & paste in place as values. Hope this helps, Hutch "juliejg1" wrote: I have a spreadsheet with column A and column B. B contains different supplier names. Column A contains a region such as EU, NA, LA. However the region is only in the first cell of the list it matches in column B. Just like if I had created a pivot table from a list of data with region and supplier. Each region would only show once because the suppliers are being grouped by region. I need to be able to quickly copy down the region in column A where there is a Region name above. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you both for your response. Both ideas work!! Thanks again.
"juliejg1" wrote: I have a spreadsheet with column A and column B. B contains different supplier names. Column A contains a region such as EU, NA, LA. However the region is only in the first cell of the list it matches in column B. Just like if I had created a pivot table from a list of data with region and supplier. Each region would only show once because the suppliers are being grouped by region. I need to be able to quickly copy down the region in column A where there is a Region name above. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy and paste versus copy and insert copied cells | New Users to Excel | |||
Copy/Paste how to avoid the copy of formula cells w/o calc values | Excel Discussion (Misc queries) | |||
How do I fill (copy) nonadjacent cells to adjacent cells? | Excel Discussion (Misc queries) | |||
How to use macros to copy a range of cells which can exclude some cells which I didn't want to be copied? | Excel Worksheet Functions | |||
Copy cells into range of cells until cell change | Excel Worksheet Functions |