Crystal Reports formula to Access

L

lindag

Any suggestions on how to use this formula in Access?

if not(IsNull({MASTER.JMT_DATE})) then "Post Judgment"else
if (IsNull({MASTER.JMT_DATE})) and not(IsNull({MASTER.SUIT_DATE}))
then "Post Suit, Pre Judgment"else
if (IsNull({MASTER.SUIT_DATE})) and (IsNull({MASTER.JMT_DATE})) then
"Pre Suit"
 
K

KARL DEWEY

Here is a guess --
IIF([MASTER].[JMT_DATE] Is Not Null, "Post Judgment",
IIF([MASTER].[JMT_DATE] Is Null AND [MASTER].[SUIT_DATE] Is Not Null, "Post
Suit, Pre Judgment", IIF([MASTER.SUIT_DATE] Is Null AND [MASTER].[JMT_DATE]
Is Null, "Pre Suit", "Unknown")))
 
L

lindag

Thank you so much, worked perfectly.


Here is a guess --
IIF([MASTER].[JMT_DATE] Is Not Null, "Post Judgment",
IIF([MASTER].[JMT_DATE] Is Null AND [MASTER].[SUIT_DATE] Is Not Null, "Post
Suit, Pre Judgment", IIF([MASTER.SUIT_DATE] Is Null AND [MASTER].[JMT_DATE]
Is Null, "Pre Suit", "Unknown")))

--
Build a little, test a little.



lindag said:
Any suggestions on how to use this formula in Access?
if not(IsNull({MASTER.JMT_DATE})) then "Post Judgment"else
if (IsNull({MASTER.JMT_DATE})) and not(IsNull({MASTER.SUIT_DATE}))
then "Post Suit, Pre Judgment"else
if (IsNull({MASTER.SUIT_DATE})) and (IsNull({MASTER.JMT_DATE})) then
"Pre Suit"
.- Hide quoted text -

- Show quoted text -
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top