HiveBrain v1.2.0
Get Started
← Back to all entries
patternMinor

if 0 show " ", if <500 show "B", if >500 show "R"

Submitted by: @import:stackexchange-dba··
0
Viewed 0 times
show500stackoverflow

Problem

I'm working on a query in Access 2010 and need help.

  • If the value is =0 I want it to show as blank,



  • if the value is



  • if the value is >500 I want it to show as "R"

Solution

Try:

IIf([value] = 0, "", IIf([value] < 500, "B", "R"))


IIf is a function that returns on of two values depending on the outcome of the conditional.

Code Snippets

IIf([value] = 0, "", IIf([value] < 500, "B", "R"))

Context

StackExchange Database Administrators Q#124276, answer score: 7

Revisions (0)

No revisions yet.