Forum Discussion

Bailey100's avatar
Bailey100
Brass Contributor
Jun 21, 2019
Solved

Why doesn't my formula work?

Hi, see the attached document. I've used a formula:   =IF(ISNUMBER(SEARCH("Jan",C3)),D3,0)   for cell G3, why is'nt this picking up that there is 'Jan' in C3 and thus producing the value in D3? ...
  • SergeiBaklan's avatar
    Jun 21, 2019

    Bailey100 

     

    In C3 you have a number, it's only formatting on the top. Use

    =IF(TEXT(C3,"mmm")="Jan",D3,0)