Is there a way to have two If Functions running together. The second one is attempting to place an greater than or less than equation into the first If loop based on if a specific cell contains a negative or positive number.
ie
This is what mycurrent attempt has produced, but doesn't work, the logic seems right to me. I just don't know how to make it work.
=IF(H5(IF(D5<0,>=,<=))D5,E5,0)
D5 = -7.5
E5 = 1
H5 = 8
The end result I'm looking for is:
=IF(H5>=-7.5,1,0)
Any help would be greatly appreciated. Thanks in advance.
ie
This is what mycurrent attempt has produced, but doesn't work, the logic seems right to me. I just don't know how to make it work.
=IF(H5(IF(D5<0,>=,<=))D5,E5,0)
D5 = -7.5
E5 = 1
H5 = 8
The end result I'm looking for is:
=IF(H5>=-7.5,1,0)
Any help would be greatly appreciated. Thanks in advance.