Finalfight40
Active Member
- Joined
- Apr 24, 2018
- Messages
- 273
- Office Version
- 365
- Platform
- Windows
Hi Everyone
I currently created the formula below which pulls back information from another sheet. However currently it only looks at 1 sheet which would be '28th-29thApr'!$1:$1048576. I was wondering if it was possible to amend this formula so that when i drag this formula to the right, it would select the next sheet rather than the same sheet?
Any help here would be appreciated and thank you in advance.
I currently created the formula below which pulls back information from another sheet. However currently it only looks at 1 sheet which would be '28th-29thApr'!$1:$1048576. I was wondering if it was possible to amend this formula so that when i drag this formula to the right, it would select the next sheet rather than the same sheet?
Any help here would be appreciated and thank you in advance.
Code:
=IFERROR(IF(VLOOKUP($A3,[B]'28th-29thApr'!$1:$1048576[/B],MATCH(H$2,[B]'28th-29thApr'!$2:$2[/B],0),FALSE)="X",1,(VLOOKUP($A3,[B]'28th-29thApr'!$1:$1048576[/B],MATCH(H$2,[B]'28th-29thApr'!$2:$2[/B],0),FALSE))), 0)