Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.setup
|
|||
|
|||
![]()
Is there a way to check if a user enter a percentage or a regular number into
a cell, then apply different formula to it? Note: user will enter a huge number like 2,345,678, or 22% (of something) |
#2
![]()
Posted to microsoft.public.excel.setup
|
|||
|
|||
![]()
Maybe...
=if(a1<1,"maybe percentage","maybe not") What happens at 100% = 1? Alan wrote: Is there a way to check if a user enter a percentage or a regular number into a cell, then apply different formula to it? Note: user will enter a huge number like 2,345,678, or 22% (of something) -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.setup
|
|||
|
|||
![]()
Dave, thx..
but what if the percent entry will over 100%, or even 1000%. do you know if there is any way to convert this 100% number to text, and then perform a search on "%"? Alan "Dave Peterson" wrote: Maybe... =if(a1<1,"maybe percentage","maybe not") What happens at 100% = 1? Alan wrote: Is there a way to check if a user enter a percentage or a regular number into a cell, then apply different formula to it? Note: user will enter a huge number like 2,345,678, or 22% (of something) -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.setup
|
|||
|
|||
![]()
You can convert any number to a percentage, so I don't think that's the
solution: =text(a1,"0%") If you're lucky, you could use something like: =CELL("Format",A1) or =if(left(CELL("Format",A1),1)="P","percentage","no pe") Alan wrote: Dave, thx.. but what if the percent entry will over 100%, or even 1000%. do you know if there is any way to convert this 100% number to text, and then perform a search on "%"? Alan "Dave Peterson" wrote: Maybe... =if(a1<1,"maybe percentage","maybe not") What happens at 100% = 1? Alan wrote: Is there a way to check if a user enter a percentage or a regular number into a cell, then apply different formula to it? Note: user will enter a huge number like 2,345,678, or 22% (of something) -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Master invoice number | Excel Worksheet Functions | |||
Need to Count number of occurrences and get percentage of total | Excel Worksheet Functions | |||
Random Number Questions | Excel Worksheet Functions | |||
Defining a number in a cell by text then subtracting it by the tex | Excel Worksheet Functions | |||
a number as a percentage out of a total | Excel Worksheet Functions |