Renaissance
Board Regular
- Joined
- Jun 20, 2013
- Messages
- 58
Good Afternoon Everyone!
It's been a hot minute since I've been present here, but I'm looking for guidance on how I might accomplish what I'm sure is a simple solution, but can't figure out an approach that works.
In short, I want to create a column of formulae on a Master tab, that I either index-match or similar into other tabs. The trick is to get the formula copied over so that it grabs corresponding cells and not the cells listed in the Master formula. The reason behind is that if I need to make a change to the formulae all I have to do is adjust the Master which feeds all other tabs.
Example: I want a simple formula in C4 of the Master tab "=C$3*D4" where D4 is a static rate (can adjust at any time) and C$3 will become the C$3:Z$3 of the corresponding Report tab, which is where I will put actual numbers. Right now I put in an indirect(index-match) but it's giving me a #REF! error which I understand and am certain there is a way to pull in the formula and apply to current range, but am having a brain fart.
Master (Note: I only put in 50 to test formula, which would normally be blank/useless):
Report:
Thank you in advance for any time spent reading and/or providing ideas. It's always something simple, and I hope doesn't take much time out of anyone's day.
~Rena
It's been a hot minute since I've been present here, but I'm looking for guidance on how I might accomplish what I'm sure is a simple solution, but can't figure out an approach that works.
In short, I want to create a column of formulae on a Master tab, that I either index-match or similar into other tabs. The trick is to get the formula copied over so that it grabs corresponding cells and not the cells listed in the Master formula. The reason behind is that if I need to make a change to the formulae all I have to do is adjust the Master which feeds all other tabs.
Example: I want a simple formula in C4 of the Master tab "=C$3*D4" where D4 is a static rate (can adjust at any time) and C$3 will become the C$3:Z$3 of the corresponding Report tab, which is where I will put actual numbers. Right now I put in an indirect(index-match) but it's giving me a #REF! error which I understand and am certain there is a way to pull in the formula and apply to current range, but am having a brain fart.
Master (Note: I only put in 50 to test formula, which would normally be blank/useless):
Master Formulae Link - Sample .xlsx | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
1 | ||||||
2 | Category | Formula | Rate | |||
3 | Volume | 50 | ||||
4 | Purple | 2.6 | 5.2% | |||
5 | Brown | 2.15 | 4.3% | |||
6 | Orange | 1 | 2.0% | |||
7 | Navy | 0.5 | 1.0% | |||
8 | Teal | 3 | 6.0% | |||
9 | Maroon | 4 | 8.0% | |||
Master |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C4:C9 | C4 | =C$3*D4 |
Report:
Master Formulae Link - Sample .xlsx | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | |||
1 | |||||||||||
2 | Category | 1/1/2021 | 2/1/2021 | 3/1/2021 | 4/1/2021 | 5/1/2021 | 6/1/2021 | 7/1/2021 | |||
3 | Volume | 45 | 50 | 55 | 60 | 65 | 70 | 75 | |||
4 | Purple | #REF! | |||||||||
5 | Brown | ||||||||||
6 | Orange | ||||||||||
7 | Navy | ||||||||||
8 | Teal | ||||||||||
9 | Maroon | ||||||||||
10 | Total | ||||||||||
Report |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C4 | C4 | =INDIRECT(INDEX(Master!$B$2:$C$9,MATCH(Report!$B4,Master!$B$2:$B$9,0),2)) |
Thank you in advance for any time spent reading and/or providing ideas. It's always something simple, and I hope doesn't take much time out of anyone's day.
~Rena