We’re trying to upsize to SQL 2000 and created an adp (project) to store the queries. Most of the queries went over from the A2K .mdb database. One query that didn’t involved the calculation of a code based on an IIF(something, ‘12345’, somethingelse). In recreating the stored procedure, the SQL check doesn’t like the IIf statement. Can anyone help me with an alternative here?
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
upsizing querys and iif (Access 2000 sp3)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » upsizing querys and iif (Access 2000 sp3)
- This topic has 16 replies, 4 voices, and was last updated 21 years, 2 months ago.
AuthorTopicWSgarbsmj
AskWoody LoungerMarch 19, 2004 at 6:10 pm #402540Viewing 1 reply threadAuthorReplies-
WScharlotte
AskWoody LoungerMarch 19, 2004 at 11:39 pm #801848 -
WSgarbsmj
AskWoody LoungerMarch 22, 2004 at 1:21 pm #802599Here’s part of the big, ugly query. I set up a view using CASE ELSE and was able to do the first IIF(customer = “999999”), but was unable to handle the nested IIF statement below::
SELECT CustHeader.SHIPDATE, ShipData.CUSTOMER, CustHeader.CUST_NAME, CustHeader.SHIP_VIA, CustHeader.NET_DAYS,
ShipData.SHIP_TO_NAME, qryHTS.HTSDescr, IIf(([ShipData].[CUSTOMER]=”999999″ And [HTSDescr]=”MOUSE EARS -“),”1234.56.78.90″,
IIf((Left([ShipData].[CUSTOMER],2)=”HO” And [HTSDescr]=”MOUSE EARS -“),”1234.56.78.90”,[qryHTS].[HTS])) AS HTS1,
…………………………..Unfortunately, we rely on IIF a lot. So other than CASE’ing ourselves into an early grave, is there a better alternative?
-
WScharlotte
AskWoody Lounger -
WSgarbsmj
AskWoody LoungerMarch 23, 2004 at 3:55 pm #803469Sorry, Charlotte – I tried to find out where I could duplicate my nested iif statement using Case, but I’m at a loss.
Can you point me in the right direction? Basically, most of our IIF statements involve two fields that need to be evaluated before we want to make a change. For example, if the item is a fruit and it’s yellow, then it needs the “fragile, it’s a banana” code. But if it’s a fruit and it’s not yellow, then it doesn’t.
Since all the examples of Case I’ve seen involve just one field, I can’t figure out what to do.
-
WSShane Sargent
AskWoody LoungerMarch 23, 2004 at 6:32 pm #803538Mmmmm…bananas! The trick is to embed the WHEN…ELSE statement withing the CASE statement. OK, let’s make a fake table to play with. Run this SQL script to make a table named Product that has 3 fields (an identity field named ID, and two fields to hold text values named Color and Durability):
CREATE TABLE [dbo].[Product] ( [ID] [numeric](18, 0) IDENTITY (1, 1) NOT NULL , [Color] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [Durability] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ) ON [PRIMARY] GO
Populate the new table. In the first record, make Color be “Yellow” and Durability be “Fragile”. Now populate a few more records; go with: Yellow/Durable, Green/Fragile, and Green/Durable.
If the Access query looks like:
SELECT *, IIF([Color] = "Yellow" AND [Durability] = "Fragile", "Banana", "Not Banana") AS WhatIsIt FROM Product
then the SQL Server query looks like this:
SELECT *, CASE WHEN P.Color = 'Yellow' AND P.Durability = 'Fragile' THEN 'Banana' ELSE 'Not Banana' END AS WhatIsIt FROM Product P
-
WSgarbsmj
AskWoody Lounger -
WSgarbsmj
AskWoody Lounger -
WSgarbsmj
AskWoody Lounger -
WSgarbsmj
AskWoody Lounger -
WSShane Sargent
AskWoody LoungerMarch 23, 2004 at 6:32 pm #803539Mmmmm…bananas! The trick is to embed the WHEN…ELSE statement withing the CASE statement. OK, let’s make a fake table to play with. Run this SQL script to make a table named Product that has 3 fields (an identity field named ID, and two fields to hold text values named Color and Durability):
CREATE TABLE [dbo].[Product] ( [ID] [numeric](18, 0) IDENTITY (1, 1) NOT NULL , [Color] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [Durability] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ) ON [PRIMARY] GO
Populate the new table. In the first record, make Color be “Yellow” and Durability be “Fragile”. Now populate a few more records; go with: Yellow/Durable, Green/Fragile, and Green/Durable.
If the Access query looks like:
SELECT *, IIF([Color] = "Yellow" AND [Durability] = "Fragile", "Banana", "Not Banana") AS WhatIsIt FROM Product
then the SQL Server query looks like this:
SELECT *, CASE WHEN P.Color = 'Yellow' AND P.Durability = 'Fragile' THEN 'Banana' ELSE 'Not Banana' END AS WhatIsIt FROM Product P
-
-
WSgarbsmj
AskWoody LoungerMarch 23, 2004 at 3:55 pm #803470Sorry, Charlotte – I tried to find out where I could duplicate my nested iif statement using Case, but I’m at a loss.
Can you point me in the right direction? Basically, most of our IIF statements involve two fields that need to be evaluated before we want to make a change. For example, if the item is a fruit and it’s yellow, then it needs the “fragile, it’s a banana” code. But if it’s a fruit and it’s not yellow, then it doesn’t.
Since all the examples of Case I’ve seen involve just one field, I can’t figure out what to do.
-
-
WScharlotte
AskWoody Lounger -
WBell
AskWoody_MVPMarch 22, 2004 at 4:18 pm #802710Adding to Charlotte’s comments, if you use CASE statements in SQL Server, you usually are talking about Stored Procedures rather than Views, which most Access SELECT queries can be converted to. And for someone who is used to the nice compact syntax of IIF statements, CASE statements seem positively ugly! But as Charlotte points out, at least through SQL Server 2000, they are the only game in town. That’s one of the reasons we typically use linked SQL Server tables rather than the ADP approach.
-
WBell
AskWoody_MVPMarch 22, 2004 at 4:18 pm #802711Adding to Charlotte’s comments, if you use CASE statements in SQL Server, you usually are talking about Stored Procedures rather than Views, which most Access SELECT queries can be converted to. And for someone who is used to the nice compact syntax of IIF statements, CASE statements seem positively ugly! But as Charlotte points out, at least through SQL Server 2000, they are the only game in town. That’s one of the reasons we typically use linked SQL Server tables rather than the ADP approach.
-
-
WSgarbsmj
AskWoody LoungerMarch 22, 2004 at 1:21 pm #802600Here’s part of the big, ugly query. I set up a view using CASE ELSE and was able to do the first IIF(customer = “999999”), but was unable to handle the nested IIF statement below::
SELECT CustHeader.SHIPDATE, ShipData.CUSTOMER, CustHeader.CUST_NAME, CustHeader.SHIP_VIA, CustHeader.NET_DAYS,
ShipData.SHIP_TO_NAME, qryHTS.HTSDescr, IIf(([ShipData].[CUSTOMER]=”999999″ And [HTSDescr]=”MOUSE EARS -“),”1234.56.78.90″,
IIf((Left([ShipData].[CUSTOMER],2)=”HO” And [HTSDescr]=”MOUSE EARS -“),”1234.56.78.90”,[qryHTS].[HTS])) AS HTS1,
…………………………..Unfortunately, we rely on IIF a lot. So other than CASE’ing ourselves into an early grave, is there a better alternative?
-
-
WScharlotte
AskWoody LoungerMarch 19, 2004 at 11:39 pm #801849
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
1 hour, 29 minutes ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
51 minutes ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
3 minutes ago -
Discover the Best AI Tools for Everything
by
Alex5723
12 minutes ago -
Edge Seems To Be Gaining Weight
by
bbearren
55 minutes ago -
Rufus is available from the MSFT Store
by
PL1
23 hours, 5 minutes ago -
Microsoft : Ending USB-C® Port Confusion
by
Alex5723
1 day, 1 hour ago -
KB5061768 update for Intel vPro processor
by
drmark
7 hours, 39 minutes ago -
Outlook 365 classic has exhausted all shared resources
by
drmark
3 hours, 51 minutes ago -
My Simple Word 2010 Macro Is Not Working
by
mbennett555
21 hours ago -
Office gets current release
by
Susan Bradley
23 hours, 37 minutes ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
2 days, 13 hours ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
1 day, 22 hours ago -
Stop the OneDrive defaults
by
CWBillow
2 days, 14 hours ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
3 days ago -
X Suspends Encrypted DMs
by
Alex5723
3 days, 2 hours ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
3 days, 2 hours ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
3 days, 3 hours ago -
OpenAI model sabotages shutdown code
by
Cybertooth
3 days, 4 hours ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
2 days, 16 hours ago -
Enabling Secureboot
by
ITguy
2 days, 23 hours ago -
Windows hosting exposes additional bugs
by
Susan Bradley
3 days, 12 hours ago -
No more rounded corners??
by
CWBillow
3 days, 7 hours ago -
Android 15 and IPV6
by
Win7and10
2 days, 21 hours ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
4 days ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
4 days, 3 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
3 days, 21 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
4 days, 10 hours ago -
May preview updates
by
Susan Bradley
3 days, 21 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
3 days, 13 hours ago
Recent blog posts
Key Links
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.