Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
bobbydave
Creator III
Creator III

Show every 3rd value

Any ideas how I would show every 3rd value

I was thinking

IF (FieldValue(CANX_MONTH ,3), CANX_MONTH )

1 Solution

Accepted Solutions
sunny_talwar

May be this:

If(Mod(CANX_MONTH , 3) = 0, CANX_MONTH)

View solution in original post

2 Replies
sunny_talwar

May be this:

If(Mod(CANX_MONTH , 3) = 0, CANX_MONTH)

bobbydave
Creator III
Creator III
Author

Works a charm

Thanks