Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 7897 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

It seems that if there is not data to summarize in a report I get question marks. How can I suppress those question marks?

Posted

I'd say the field is too small to display the number. Make it wider.

Posted

Rivet,

I get the same problem in some of my screens. In my case it is caused by a math error from my data. Basically, whenever I have data for one half of the calculation but none for the other I get the question mark because it is a divide by zero error. (i.e. a phone analyst has logged in, but taken no calls. So Average Time per call yeilds a question mark). I suppose you could place some validation logic in the field such as if RESULT<0, "".

Hope this helps.

Posted

The problem is that Summary fields can't return the result of a calculation.

I dunno, Rivet. I created a test file with a Summary field that (in this case) returns a zero, and I saw the "0" in the field. Didn't matter whether the field was in the body or a sub-summary part.

Which version of FMP are you using?

Posted

It is a divide by zero error. Here is the three fields I have:

stMale--Calc--Gender='Male' and DateBirth>0

stAgeM--calc--stMale*Age

stAvgM--summary--average of stAgeM weighted by _stMale

So if there is no data for the reported group I get a zero. Can anyone see a fix?

(I have attached a snap of the report created in FMP6)

questionMarks.jpg

Posted

Try displaying a calculated field based on the summary field like this:

Case(IsEmpty(GetSummary(AverageFemaleAge, theBreakField)), "N/A",

GetSummary(AverageFemaleAge, theBreakField))

This topic is 7897 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.