Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Good Morning!
I am wondering how to copy a cell and paste it so that the cell reference within the formula changes. For example: =IF('EAST Region PSR Detail '!A9=""," ",'EAST Region PSR Detail '!A9) when dragged down becomes =IF('EAST Region PSR Detail '!A10=""," ",'EAST Region PSR Detail '!A10) What I need to accomplish is to have the cell reference within the formula to change by 6 integers vs 1, so the correct formula would be =IF('EAST Region PSR Detail '!A15=""," ",'EAST Region PSR Detail '!A15) |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
=IF(INDEX('EAST Region PSR Detail '!A:A,9+(Row(A1)-1)*6)=""," ", INDEX('EAST Region PSR Detail '!A:A,9+(Row(A1)-1)*6)) -- Regards Roger Govier "mainsol" wrote in message ... Good Morning! I am wondering how to copy a cell and paste it so that the cell reference within the formula changes. For example: =IF('EAST Region PSR Detail '!A9=""," ",'EAST Region PSR Detail '!A9) when dragged down becomes =IF('EAST Region PSR Detail '!A10=""," ",'EAST Region PSR Detail '!A10) What I need to accomplish is to have the cell reference within the formula to change by 6 integers vs 1, so the correct formula would be =IF('EAST Region PSR Detail '!A15=""," ",'EAST Region PSR Detail '!A15) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This is one way to get it going
In the start cell, where you have: =IF('EAST Region PSR Detail '!A9=""," ",'EAST Region PSR Detail '!A9) Replace it with this: =IF(INDIRECT("'EAST Region PSR Detail '!A"&ROWS($1:1)*6+3)="","",INDIRECT("'EAST Region PSR Detail '!A"&ROWS($1:1)*6+3)) Copy down to return desired results I took the liberty to amend the return to a null string: "", which imo, poses less potential downstream problems than to return a single space: " " -- Max Singapore http://savefile.com/projects/236895 Downloads:23,000 Files:370 Subscribers:66 xdemechanik --- "mainsol" wrote: I am wondering how to copy a cell and paste it so that the cell reference within the formula changes. For example: =IF('EAST Region PSR Detail '!A9=""," ",'EAST Region PSR Detail '!A9) when dragged down becomes =IF('EAST Region PSR Detail '!A10=""," ",'EAST Region PSR Detail '!A10) What I need to accomplish is to have the cell reference within the formula to change by 6 integers vs 1, so the correct formula would be =IF('EAST Region PSR Detail '!A15=""," ",'EAST Region PSR Detail '!A15) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
What a drag - changing the formula | Excel Worksheet Functions | |||
How do I drag a formula keeping cells the same but changing sheets | Excel Worksheet Functions | |||
Copy drag formula down cells | Excel Worksheet Functions | |||
changing integers in a list | New Users to Excel | |||
Copy an Drag cell Formula Problem | Excel Discussion (Misc queries) |