Would like to list all records but if a boolean field is true not show certain fields such as address, city, state, zip. I can barely get started with this for this is what I have:
SELECT Lastname, Firstname, NoAddress, Address, City, State, Zip
FROM Members
WHERE IIF(NoAddress,”, ”)
ORDER BY Lastname
NoAddress is the boolean.