find missing value

ausafausaf

New Member
Joined
Nov 22, 2013
Messages
14
I want to find missing value between to colum. like this


13 how can I find value 2 between 1 and 3
48and 5,6,7 between 4 and 8

<tbody>
</tbody>

please any one tell me the formula for this.
please help
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
I want to find missing value between to colum. like this


13 how can I find value 2 between 1 and 3
48and 5,6,7 between 4 and 8

<tbody>
</tbody>

please any one tell me the formula for this.
Assuming your data is in Columns A and B starting on Row 1, put this formula in C1 and copy it across for as many columns as you think you will ever have need for, then copy all those cells down to the end of your data...

=IF($A1+COLUMN(A1)<$B1,$A1+COLUMN(A1),"")
 
Upvote 0
Please I will explain ,, what I want
1-110
115-120 please look between 110 to 115 the value 111 from 114 are missing how can I display in column C



<colgroup><col><col></colgroup><tbody>
</tbody>
 
Upvote 0
in 4 to 8 missing value are 5, 6, 7 I want to display in separate cell
Do you mean you want the 5, 6 and 7 to all appear in one cell (perhaps with a comma-space separating them)? If so, you will not be able to do that with a formula for the general case... you will need a UDF (a user defined function) created in VB code. However, you said you wanted a formula initially, so before I write the UDF, would you be able to use it being that it is not the formula solution you asked for?
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

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