Hey everyone, I've been getting help building on this formula but I'm afraid the logic has gotten more complex in what I need to return. Here's what they're asking for now:
If M5=1,2,3,4,5,6,or 9 then return H5 a period and data from E5, but if M5=1,2,3,4,5,6,or 9 and L5=M then return 7 digits from H5 & ".71020"; then if M5=5,6,or 9 and D5="su" then return 7 digits from H5 & ".59010.
Hope that makes sense.
This is what I currently have that I’m trying to build off of:
=IF(OR(M5={5,6}),IF(M5="{5,6}",H5&"."&E5,IF(L5="M",(LEFT(H5,7))&".71020",LEFT(H5,7)&".59010")),H5&"."&E5)
If M5=1,2,3,4,5,6,or 9 then return H5 a period and data from E5, but if M5=1,2,3,4,5,6,or 9 and L5=M then return 7 digits from H5 & ".71020"; then if M5=5,6,or 9 and D5="su" then return 7 digits from H5 & ".59010.
Hope that makes sense.
This is what I currently have that I’m trying to build off of:
=IF(OR(M5={5,6}),IF(M5="{5,6}",H5&"."&E5,IF(L5="M",(LEFT(H5,7))&".71020",LEFT(H5,7)&".59010")),H5&"."&E5)