I need a Case statement that will be true if a value is >=0 AND <=1. Here's what I have tried, none of which work:
Case Is >= 0, Is <= 1 'True for all values
Case Is >= 0 and Is <= 1 'Syntax error
Case >= 0 and <= 1 'Syntax error
Case is >= 0 andalso is <= 1...