How to get next Higher value

Santosh080

Board Regular
Joined
Jul 15, 2016
Messages
77
Office Version
  1. 2021
Platform
  1. Windows
Hello Friends,

i have some data like this

6
12
18
24
30
36
42
48
54
60
66
72
78
84
90
96
102
108
114
120



I want to extract data from this table like this.

When i put a value like 32 it should extract next higher value of 32 like in this table it is 36. so it should extract 36. When i type value 37 it should extract 42 (next higher number)

Can it possible.?



Thaks
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Try:
Book1
AB
1632
21236
318
424
530
636
742
848
954
1060
1166
1272
1378
1484
1590
1696
17102
18108
19114
20120
Sheet3
Cell Formulas
RangeFormula
B2B2=MINIFS(A1:A20,A1:A20,">"&B1)
 
Upvote 0
Try

Excel Formula:
=INDEX(A1:A20,XMATCH(C2,A1:A20,1))

1714354445523.png
 
Upvote 0
Solution

Forum statistics

Threads
1,216,081
Messages
6,128,694
Members
449,464
Latest member
againofsoul

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