Not sure if using a formula is the right approach here....if so, which one?

Elmo1239

New Member
Joined
Jun 13, 2021
Messages
3
Office Version
  1. 2019
Platform
  1. MacOS
Hello all,

I have a sheet filled with various quotes that I enjoy/relate to and like to see occasionally as a reminder. Let's call this sheet "Quotes". Each quote is in an individual cell.

I have another sheet that could be considered a "Menu" page from where I can select the other pages I would like to see/work on.

My end goal is to figure out a way to populate a single cell on the "Menu" page with a quote from the "Quotes" sheet, but that would select & display a new quote on a daily basis.

Is there a formula that would select one quote amongst a whole range of values and display it on another sheet?

Thanks for any suggestions/help you have!
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
how about using a column with numbers in
and a lookup
=INDEX(B2:B27,MATCH(RANDBETWEEN(1,26),A2:A27,1))

Randbetween ( the range of numbers )

Book1
ABCD
1No.QuoteA B C 19
21A B C 1
32A B C 2
43A B C 3
54A B C 4
65A B C 5
76A B C 6
87A B C 7
98A B C 8
109A B C 9
1110A B C 10
1211A B C 11
1312A B C 12
1413A B C 13
1514A B C 14
1615A B C 15
1716A B C 16
1817A B C 17
1918A B C 18
2019A B C 19
2120A B C 20
2221A B C 21
2322A B C 22
2423A B C 23
2524A B C 24
2625A B C 25
2726A B C 26
Quote
Cell Formulas
RangeFormula
D1D1=INDEX(B2:B27,MATCH(RANDBETWEEN(1,26),A2:A27,1))
 
Upvote 0
Or without a helper column.
Although it's volatile so will change whenever any cell changes or recalculates.
+Fluff 1.xlsm
ABC
1QuoteA B C 20
2A B C 1
3A B C 2
4A B C 3
5A B C 4
6A B C 5
7A B C 6
8A B C 7
9A B C 8
10A B C 9
11A B C 10
12A B C 11
13A B C 12
14A B C 13
15A B C 14
16A B C 15
17A B C 16
18A B C 17
19A B C 18
20A B C 19
21A B C 20
22A B C 21
23A B C 22
24A B C 23
25A B C 24
26A B C 25
27A B C 26
28
Master
Cell Formulas
RangeFormula
C1C1=INDEX(A2:A27,RANDBETWEEN(1,ROWS(A2:A27)))
 
Upvote 0
how about using a column with numbers in
and a lookup
=INDEX(B2:B27,MATCH(RANDBETWEEN(1,26),A2:A27,1))

Randbetween ( the range of numbers )

Book1
ABCD
1No.QuoteA B C 19
21A B C 1
32A B C 2
43A B C 3
54A B C 4
65A B C 5
76A B C 6
87A B C 7
98A B C 8
109A B C 9
1110A B C 10
1211A B C 11
1312A B C 12
1413A B C 13
1514A B C 14
1615A B C 15
1716A B C 16
1817A B C 17
1918A B C 18
2019A B C 19
2120A B C 20
2221A B C 21
2322A B C 22
2423A B C 23
2524A B C 24
2625A B C 25
2726A B C 26
Quote
Cell Formulas
RangeFormula
D1D1=INDEX(B2:B27,MATCH(RANDBETWEEN(1,26),A2:A27,1))
Awesome, this worked perfectly, thanks Etaf!
 
Upvote 0
Or without a helper column.
Although it's volatile so will change whenever any cell changes or recalculates.
+Fluff 1.xlsm
ABC
1QuoteA B C 20
2A B C 1
3A B C 2
4A B C 3
5A B C 4
6A B C 5
7A B C 6
8A B C 7
9A B C 8
10A B C 9
11A B C 10
12A B C 11
13A B C 12
14A B C 13
15A B C 14
16A B C 15
17A B C 16
18A B C 17
19A B C 18
20A B C 19
21A B C 20
22A B C 21
23A B C 22
24A B C 23
25A B C 24
26A B C 25
27A B C 26
28
Master
Cell Formulas
RangeFormula
C1C1=INDEX(A2:A27,RANDBETWEEN(1,ROWS(A2:A27)))
Great, thanks for the added input! Appreciate everyone's help with this one!
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,965
Messages
6,122,499
Members
449,089
Latest member
Raviguru

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