Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Show counts by disposition

Explorer ,
Jan 26, 2015 Jan 26, 2015

I need to show by counselor how many students were accepted, cancelled, enrolled, etc. I also need grand totals. I tried using a calculated field where I entered:

iif(trim(query.dispos) eq DE("Accepted"), 1, 0) in the perform calculation on field but I always get 0 for the answer. I tried using single quotes around Accepted but that didn't make a difference.

Any ideas?

TOPICS
Reporting
699
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Advocate , Jan 27, 2015 Jan 27, 2015

Then don't use the delay evaluation function. Change your code to the following:

iif(trim(query.dispos) eq query.Accepted, 1, 0)

However, if you are trying to determine its value then use the following:

iif(trim(query.dispos) eq "Accepted", 1, 0)

Translate
Advocate ,
Jan 26, 2015 Jan 26, 2015

Is "Accepted" a field in your result set?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 27, 2015 Jan 27, 2015

Yes it is.

Bonni

---

Bonni Harris

Database Analyst

Eureka College

300 E. College Avenue

Eureka, IL 61530-1500

309-467-6467

On Mon, Jan 26, 2015 at 4:57 PM, Eddie Lotter <forums_noreply@adobe.com>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Jan 27, 2015 Jan 27, 2015

Then don't use the delay evaluation function. Change your code to the following:

iif(trim(query.dispos) eq query.Accepted, 1, 0)

However, if you are trying to determine its value then use the following:

iif(trim(query.dispos) eq "Accepted", 1, 0)

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 27, 2015 Jan 27, 2015
LATEST

Thank you for your help!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources