ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   How to deal with "$0 - $500" in one cell (https://www.excelbanter.com/excel-programming/367671-how-deal-%240-%24500-one-cell.html)

Who I Am

How to deal with "$0 - $500" in one cell
 
A spreadsheet has multiple cells filled with the ranges like "$0 -
$500" or "$501 - $1000" or "Jan 2006 - March 2006".

Is there a way to make judgement programmatically (either using
function or procedure) to determine if a value falls in the range?

Thanks in advance.


Tom Ogilvy

How to deal with "$0 - $500" in one cell
 
v = application.Split(cell.Value,"-")
lb = clng(trim(v(0))
ub = clng(trim(v(1))
if v = lb and v <= ub then
' it's between

--
Regards,
Tom Ogilvy


"Who I Am" wrote:

A spreadsheet has multiple cells filled with the ranges like "$0 -
$500" or "$501 - $1000" or "Jan 2006 - March 2006".

Is there a way to make judgement programmatically (either using
function or procedure) to determine if a value falls in the range?

Thanks in advance.




All times are GMT +1. The time now is 11:40 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com