I have a table in tableau with such columns:
sender_id - id of sender, not unique in the table
date = date of sending.
For example:
sender_id | date
------------------
11111 | 01.01.2020
11111 | 02.02.2020
22222 | 03.01.2020
33333 | 05.01.2020
44444 | 03.02.2020
I need to create a calculated field, which will determine whether this sender_id made a sending after 01.02. It should look like this:
sender_id | date | calculated_field
----------------------------------------
11111 | 01.01.2020 | 1
11111 | 02.02.2020 | 1
22222 | 02.01.2020 | null
33333 | 02.01.2020 | null
44444 | 03.02.2020 | 1
How could I do this?
