Microsoft
Software
Hardware
Network
Question : Have Access report only show Amount data if no PayAmt data
Hi, experts!
I have a report pulling from a query, and two of the fields are Amount and PayAmt. In the report based on this query, for each detail record, I do NOT want to see the Amount IF there is a value in the PayAmt field. I've tried many different things, but no luck so far. Any ideas? Thanks!
Answer : Have Access report only show Amount data if no PayAmt data
Another option:
Add this as a new field in your query
SELECT Amount, IIF([PayAmount]>0,"",[Amoun
t]) As Amountx, PayAmount...
FROM YourTable
...
Then use the new "Amountx" Field in the report, not the original "Amount" Field.
;-)
JeffCoachman
Random Solutions
SBS2008 migration to Windows 2008 Std
override err.raise?
FAXCOOLWAREZ037 192.168.1.38 00-1A-73-C3-39-8A
Server does not boot
ASA 5505 DMZ won't Access Internet
PHP Statement that shows a percentage of a price
jquery set value of hidden form field
Jumbo frame configuration is saved where?
recover missing emails - information store service stopped
How can I sign certificate request using java.security or Bouncycastle programmatically?