If True Formula

ronie85

Board Regular
Joined
Jan 25, 2014
Messages
89
Office Version
  1. 365
Platform
  1. Windows
I am looking 2 formulas. Cell R5 contains data and cell R15 tells me if this data is true. I therefore want cell R16 to check if Cell R15 is True and therefore show the data that is contained within cell R12. If Cell R15 is false I don't want cell R16 to show anything. The 2nd formula I am looking is this and it ties in with the details above. Column R is the newest column with S, T, U, V ect showing data. basically the older to newest goes from right to left rather than the other way. I need a formula in say cell A16 to show the text in the closest cell within this row. In this case being R16. Next week it will show Q16, then P16 and so on. I just wasn't this formula to update on a weekly basis when the new entries have been put in.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Hi, maybe in R16:
=IF(R15,R12,"")

and in A16
=INDEX(B16:V16,MATCH(TRUE,(INDEX(B16:V16<>"",0)),0))

You may need to alter the columns.. I have assumed your data starts in column V and ends in column B
 
Upvote 0
Hi, maybe in R16:
=IF(R15,R12,"")

and in A16
=INDEX(B16:V16,MATCH(TRUE,(INDEX(B16:V16<>"",0)),0))

You may need to alter the columns.. I have assumed your data starts in column V and ends in column B

That worked a treat!! Thank you very much, now I need to implement it 3 times across 92 sheets lol, Thanks again
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top