Can anybody help. I am trying to write a formula that will copy a cell if the 4th char is /. I have written =IF(LEFT(B2,4)="/",""), but it does not seem to work. Can you please help me by telling me where I have gone wrong.
The problem with the statement is you are setting the value to "" if it passes the test. An if statement like that reads =IF(test,value if true, value if false), your formula shouls be =IF(LEFT(B2,4)="/",B2,"")
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.