Forum Discussion
Caesarus7
Jan 09, 2019Copper Contributor
Index and match 2 values to then create a percentage
Hi all, I am looking to make a table of stock market index performance for various time ranges. I have tried using the index and match function but not sure how to incorporate that into a wider...
- Jan 09, 2019Hi
Try this
=1- ( INDEX('Index Raw Data'!C5:C60,MATCH(I3,'Index Raw Data'!B5:B60,0)) / INDEX('Index Raw Data'!C4:C59,MATCH(I2,'Index Raw Data'!B4:B59,0)) )
Wyn Hopkins
Jan 09, 2019MVP
Hi
Try this
=1- ( INDEX('Index Raw Data'!C5:C60,MATCH(I3,'Index Raw Data'!B5:B60,0)) / INDEX('Index Raw Data'!C4:C59,MATCH(I2,'Index Raw Data'!B4:B59,0)) )
Try this
=1- ( INDEX('Index Raw Data'!C5:C60,MATCH(I3,'Index Raw Data'!B5:B60,0)) / INDEX('Index Raw Data'!C4:C59,MATCH(I2,'Index Raw Data'!B4:B59,0)) )
Caesarus7
Jan 10, 2019Copper Contributor
Thank you so much! this worked a treat!
Cheers
Joel