Jump to content

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

Recommended Posts

Posted

I need to sort records by ascending date and have the records with the blank date fields appear at the end of the report rather than at the first. There has to be a way to do this, but I can't find it. I'm looking at a FMPro 6 bible, and it even says "If a record contains nothing in the sort field and you perform an ascending sort, it will appear at the beginning of the set of sorted records". O.K., but we don't want these records at the beginning of the set. Help, please.

Posted

I need to sort records by ascending date and have the records with the blank date fields appear at the end of the report rather than at the first. There has to be a way to do this, but I can't find it. I'm looking at a FMPro 6 bible, and it even says "If a record contains nothing in the sort field and you perform an ascending sort, it will appear at the beginning of the set of sorted records". O.K., but we don't want these records at the beginning of the set. Help, please.

Posted

I need to sort records by ascending date and have the records with the blank date fields appear at the end of the report rather than at the first. There has to be a way to do this, but I can't find it. I'm looking at a FMPro 6 bible, and it even says "If a record contains nothing in the sort field and you perform an ascending sort, it will appear at the beginning of the set of sorted records". O.K., but we don't want these records at the beginning of the set. Help, please.

Posted

Not sure if this will work. BUT, you could create a value list based on your Date Field. You can then use the "Customer Order based on Value List".

According to the FM Documentation (version 6), it will put the values not found at the end of the sort.

Only caveat is whether the blank records get a value in the list or not.

Worth a try.

Posted

Not sure if this will work. BUT, you could create a value list based on your Date Field. You can then use the "Customer Order based on Value List".

According to the FM Documentation (version 6), it will put the values not found at the end of the sort.

Only caveat is whether the blank records get a value in the list or not.

Worth a try.

Posted

Not sure if this will work. BUT, you could create a value list based on your Date Field. You can then use the "Customer Order based on Value List".

According to the FM Documentation (version 6), it will put the values not found at the end of the sort.

Only caveat is whether the blank records get a value in the list or not.

Worth a try.

Posted

I have blank values. They always screw up reports.

So I make a calculation field along the lines of

If( IsEmpty( field ), "<default>", field )

and use this calc field in the reports. All blank entries then display the <default> value, which looks much better then nothing.

Posted

I have blank values. They always screw up reports.

So I make a calculation field along the lines of

If( IsEmpty( field ), "<default>", field )

and use this calc field in the reports. All blank entries then display the <default> value, which looks much better then nothing.

Posted

I have blank values. They always screw up reports.

So I make a calculation field along the lines of

If( IsEmpty( field ), "<default>", field )

and use this calc field in the reports. All blank entries then display the <default> value, which looks much better then nothing.

This topic is 7285 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.