I need a formula to change a cell value with respect to another cell value. If “A1” is > “B1” then B1’s value should be replace with A1’s value.
for example
A1=10, B1=12 “initial value”
A1=15, B1=15 “change in B1 with respect to A1”
A1=13, B1=15 " no change if A1<B1"
Basically B1’s value should be depend on its own old value and A1’s values comparison.