A1: 10
C1: 20
B1: is there a formula to show A1 is less than or equal to C1?
Like this...
10 < 20
10 = 10
20>10
A1: 10
C1: 20
B1: is there a formula to show A1 is less than or equal to C1?
Like this...
10 < 20
10 = 10
20>10
Are you looking for something like this?
A1<=C1
Happy Excel'ing!
sure: =A1&IF(A1<C1,"<",IF(A1>C1,">","="))&C1
If your question has been satisfactorily addressed, please consider marking it solved. Click the Thread Tools dropdown and select Mark thread as solved.
Also, you might want to add to the user's reputation by clicking the star icon in the lower left corner of the post with the answer- it's why we do what we do...
Thomas Lafferty
Analyst/Programmer
Or in B1
=IF(A1<C1, A1&"<"&C1,IF(A1>C1, A1&">"&C1, A1&"="&C1))?
ChemistB
My 2?
substitute commas with semi-colons if your region settings requires
Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)
Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble
tlafferty, is there a way to show only the less than or greater sign?
haru, yes i'm looking for this A1<=C2
i want something like this
A1: 10
B1: <
C1:20
=if(a1<c1, "<",if(a1>c1, ">", "="))
nice thank you chemist, you're great!![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks