Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I'm sure this is a simple query, but can you convert true/false returns into 1/0? I have a page full of either "true or false"'s, and it is much easier to see where you are if you are just dealing with 1 or 0's. Thanks, Will |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Maybe a couple of Edit|Replaces would be the simplest way to convert them.
will wrote: Hi, I'm sure this is a simple query, but can you convert true/false returns into 1/0? I have a page full of either "true or false"'s, and it is much easier to see where you are if you are just dealing with 1 or 0's. Thanks, Will -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dave,
Thanks for the reply, but these values will be constantly changing so it needs to be dynamic. Will "Dave Peterson" wrote: Maybe a couple of Edit|Replaces would be the simplest way to convert them. will wrote: Hi, I'm sure this is a simple query, but can you convert true/false returns into 1/0? I have a page full of either "true or false"'s, and it is much easier to see where you are if you are just dealing with 1 or 0's. Thanks, Will -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=IF(YourOriginalFormula,1,0)
-- Kind regards, Niek Otten "will" wrote in message ... Hi, I'm sure this is a simple query, but can you convert true/false returns into 1/0? I have a page full of either "true or false"'s, and it is much easier to see where you are if you are just dealing with 1 or 0's. Thanks, Will |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Will,
In Excel, multiply by 1 to change to numeric value e.g in b1 put =a1*1 in VBA multiply by -1! HTH "will" wrote: Dave, Thanks for the reply, but these values will be constantly changing so it needs to be dynamic. Will "Dave Peterson" wrote: Maybe a couple of Edit|Replaces would be the simplest way to convert them. will wrote: Hi, I'm sure this is a simple query, but can you convert true/false returns into 1/0? I have a page full of either "true or false"'s, and it is much easier to see where you are if you are just dealing with 1 or 0's. Thanks, Will -- Dave Peterson |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If TRUE/FALSE come out of an expression like:
=(1=1) this always gives true, then use: =--(1=1) will convert to a number -- Gary''s Student "will" wrote: Hi, I'm sure this is a simple query, but can you convert true/false returns into 1/0? I have a page full of either "true or false"'s, and it is much easier to see where you are if you are just dealing with 1 or 0's. Thanks, Will |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
What's the best way to toggle between true and false in Excel? Hiall, My excel work involves a lot of toggling between true and false (booleantypes) ... and it's very repetitive... Is there a way to select a bunch ofcells, and press a key short-cu | Excel Discussion (Misc queries) | |||
Search for 2 true arguments and return true or false | Excel Discussion (Misc queries) | |||
Function to return True/False if all are validated as True by ISNU | Excel Worksheet Functions | |||
Reverse false and combine with true true value | Excel Worksheet Functions | |||
True Or False, no matter what... it still displays the false statement | Excel Programming |