How do I set value
I have very strange problem. I don't know how to present it with words, so I write down an example.
I have 5 columns on the worksheet.
In the first column (A1) user inputs a value.
If this value is 13 character long, it should
be replaced by the value in cell E1. If not
then nothing happens.
if length(A1)=13 then
replace A1 with E1
else
leave it as it is
endif
Is this possible in Excel?