Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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