My Assistant
|
|
Feb 10 2012, 11:18 AM
Post
#1
|
|
|
UtterAccess Veteran Posts: 311 From: MD |
Hello,
I'm trying to create a formula that will do the following: IF cell A1 is not empty, then compare A1 to G1, if they're the same, return TRUE, if not return FALSE IF cell A1 is empty, then compare B1 to G1, if they're the same, return TRUE, if not return FALSE I have the following formula below but I'm getting incorrect data. =IF(AND((AND(A1="",B153=G1)),"TRUE","FALSE"),IF((AND(A1<>"",A1=G1)),"TRUE","FALSE")) Thanks for any help on this! |
|
|
|
tiger3p Nested Ifs Feb 10 2012, 11:18 AM
ipisors =IF(LEN(A1)>0,IF(A1=G1,"TRUE","F... Feb 10 2012, 11:20 AM
StuKiel Hi,
Try this:
=IF(A1<>"",A1,B1)=... Feb 10 2012, 11:22 AM
theDBguy Hi,
How about something like:
=IF(ISBLANK(A1),IF... Feb 10 2012, 11:23 AM
tiger3p Thanks so much! It works! Feb 10 2012, 11:25 AM![]() ![]() |
|
Go to Top · Lo-Fi Version | Time is now: 22nd May 2013 - 07:30 AM |