detecting change in column without loop

mandukes

Forum Rules
Joined
May 25, 2013
Messages
90
Hi,
I have values in column listed as following.

Is there any way to find if any value in column going less then the permissible limit?
For example:
I have a column A Which have variable data when making any changes effects values in column B
I want to set the constraint such that if column A making any values in Column B less than 6 (by increasing or decreasing value in column A ) then that value in column A will be rejected and Column A value will not update further (Increase or Decrease).

so the concept here is to loop through each Row in Column A and try to increase and decrease value until condition is satisfied.

Example 1:

Column AColumn B
120 15
10012
100/507/6

<tbody>
</tbody>







at 100 -------- 7 Acceptable
at 50 ----------6.5 Unacceptable
so the final value would be 100

Example 2:

Column AColumn B
52015
40012
35011
20010
150/12510
8
7.5/5.5

<tbody>
</tbody>













If I decrease from 150 to 125 the value somewhere in column B goes down from 7.5 to 5.5 which is not acceptable.
Therefore, 150 will be accepted.

at 150 -------7.5 Acceptable `
at 125 -------5.5 Unacceptable

so, the final value would be 150


Thanks :)
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
I am a little confused because you nominate a specific limit in your opening but one of your examples appears to contradict that.

Anyway,
if I enter 100 into A3 and 99 into A4, highlight those cells and drag them down to beyond 20 rows,
and then enter "=A3/14" into B3 and "=if(B3>6,A3,"")" into C3
and then drag those two columns downwards against the Col A values, there comes a point when no values show in Col C.

That therefore means that in your VBA your IF block will need to read something like:
= if calculated result >6 then
process
else
Last value
exit sub
end if

How that actually will work will depend upon your data and formulae which you have not disclosed.
As such this is very much a hypothetical solution.
 
Upvote 0
Here is the sample file : Sample

Try to edit Column A

I am a little confused because you nominate a specific limit in your opening but one of your examples appears to contradict that.

Anyway,
if I enter 100 into A3 and 99 into A4, highlight those cells and drag them down to beyond 20 rows,
and then enter "=A3/14" into B3 and "=if(B3>6,A3,"")" into C3
and then drag those two columns downwards against the Col A values, there comes a point when no values show in Col C.

That therefore means that in your VBA your IF block will need to read something like:
= if calculated result >6 then
process
else
Last value
exit sub
end if

How that actually will work will depend upon your data and formulae which you have not disclosed.
As such this is very much a hypothetical solution.
 
Last edited:
Upvote 0
I still don't understand what you are trying to achieve.

I've downloaded and unhide data. I see Col K appears to hold random values from 0 to 2.
It appears to me that the formulae down Col M do a Vlookup into Col O.

I wondered about the "13" and "14" in M2 and N2 and then realised that they are only column number references.

What I have come to understand is that if I increment/decrement the value in O3 I influence the values in Cols M:O. I notice that some of those O3 values may go below your limit of 6.

How are you inputting the O3 values? Do you somehow want a flag to appear at Q3 to indicate that you've gone too small because a value in O:O is below 6?

I doubt that I can assist further but your answers may prove productive for some other who may read.
 
Upvote 0
I purposely hide Col M andCol O because to be not confusing and it has no importance relating to the problem, and you don't have to change values in Column O3 instead I mentioned already to edit the value in Column "A" only which causing change in values in column "B".

I just want a way to adjust values in column A so that column B values be in the
permissible limit. ( ie. not below 7 ). This can be achieved by changing values in column A and then checking all rows of Column B for permissible limit, to achieve this I need to loop through each row in column B every time value is changed , which can take more processing time (Slowing down Vba). I need to achieve this without looping.


Regards
~M
 
Last edited:
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

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