Jump to content

Getting unique values from Inline result with dups


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

Recommended Posts

  • 4 weeks later...

Make sure you inline action is doing a sort by the unique values.

The result should be:

Honda

Honda

Toyota

Toyota

Toyota

Now you can do al little javascript trick:

<script language="javascript">

previousvalue = "";

</script>

[FMP-record]

<script language="javascript">

if (previousvalue != [FMP-field: yourfield])

{

}

previousvalue = "[FMP-field: yourfield]";

</script>

[/FMP-record]

Link to comment
Share on other sites

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