Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Paperback Writer
 
Posts: n/a
Default Greater Than Less Than Question

=IF((J2<10000005000000),"Show","Hide")

This formula is placing "Show" in every field. I want it to put "Show" in
each field that is between 1 and 5 million, and "Hide" in fields less than 1
million and greater than 5 million.

THANK YOU
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PCLIVE
 
Posts: n/a
Default Greater Than Less Than Question

One way:

=IF(AND(J21000000,J2<5000000),"Show","Hide")

HTH,
Paul

"Paperback Writer" wrote in
message ...
=IF((J2<10000005000000),"Show","Hide")

This formula is placing "Show" in every field. I want it to put "Show" in
each field that is between 1 and 5 million, and "Hide" in fields less than
1
million and greater than 5 million.

THANK YOU



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips
 
Posts: n/a
Default Greater Than Less Than Question

=IF(AND(J21000000,J2<5000000),"Show","Hide")


--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)

"Paperback Writer" wrote in
message ...
=IF((J2<10000005000000),"Show","Hide")

This formula is placing "Show" in every field. I want it to put "Show" in
each field that is between 1 and 5 million, and "Hide" in fields less than

1
million and greater than 5 million.

THANK YOU



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron Coderre
 
Posts: n/a
Default Greater Than Less Than Question

Try this:
=IF(AND(J2<=1000000,J2=5000000),"Show","Hide")

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


"Paperback Writer" wrote:

=IF((J2<10000005000000),"Show","Hide")

This formula is placing "Show" in every field. I want it to put "Show" in
each field that is between 1 and 5 million, and "Hide" in fields less than 1
million and greater than 5 million.

THANK YOU



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron Coderre
 
Posts: n/a
Default Greater Than Less Than Question

OK, correction...Here's what I meant to type

=IF(AND(J2=1000000,J2<=5000000),"Show","Hide")


***********
Regards,
Ron

XL2002, WinXP-Pro


"Paperback Writer" wrote:

=IF((J2<10000005000000),"Show","Hide")

This formula is placing "Show" in every field. I want it to put "Show" in
each field that is between 1 and 5 million, and "Hide" in fields less than 1
million and greater than 5 million.

THANK YOU

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pivot table question gary Excel Discussion (Misc queries) 1 January 10th 06 06:25 PM
Matching Values from an Array Mal Excel Worksheet Functions 2 January 4th 06 10:06 AM
I want the greater number of 2 cells to show in a separate cell cfiser Excel Discussion (Misc queries) 2 November 16th 05 10:32 PM
I want the greater number of 2 cells to show in a separate cel cfiser Excel Discussion (Misc queries) 0 November 16th 05 10:03 PM
I want the greater number of 2 cells to show in a separate cell Ron Coderre Excel Discussion (Misc queries) 1 November 16th 05 09:22 PM


All times are GMT +1. The time now is 08:17 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"