If Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I put this into an excel formula ?

If this "MID(N3;6;3)" equals "OLA" then do this "MID(N3;6;3)&LEFT(N3;3)"

otherwise

Y3&MID(N3;6;3)

Thank you in advance.
 
Can't really check this without knowing what your data looks like but see if
this works.

=IF(MID(N3,6,3)="OLA",MID(N3,6,3)&LEFT(N3,3),Y3&MID(N3,6,3))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top