Hi,
I have a number for each day of a week, but i want to not replicate the number and just have it show once for the week. Ie not aggregate per week.
current data:
Date | DOW | Week | RecordID | placeholder |
1/30/2023 | Monday | 1/30/2023 | 1355 | 3 |
1/31/2023 | Tuesday | 1/30/2023 | 1355 | 3 |
2/1/2023 | Wednesday | 1/30/2023 | 1355 | 3 |
2/2/2023 | Thursday | 1/30/2023 | 1355 | 3 |
2/3/2023 | Friday | 1/30/2023 | 1355 | 3 |
expected:
Date | DOW | Week | RecordID | placeholder |
1/30/2023 | Monday | 1/30/2023 | 1355 | 3 |
1/31/2023 | Tuesday | 1/30/2023 | 1355 | 0 |
2/1/2023 | Wednesday | 1/30/2023 | 1355 | 0 |
2/2/2023 | Thursday | 1/30/2023 | 1355 | 0 |
2/3/2023 | Friday | 1/30/2023 | 1355 | 0 |
Note that there are more "date" and "week" with different "record id" this is just a sample.
hoping this makes sense.
Hi @wonka1234
How is this fact pattern different than the other post you have? The same solution (or slight variation of it) should work
Hi @wonka1234
Do you want a single placeholder per week and ID or just week?
Does your week start on Monday or Sunday
Dan
This certainly looks like it will work. Are the results correct when you try with your actual data?
Dan
Hi @wonka1234
I would use "Tile" tool and make the "week" column as unique value in the tile configuration.
Then, we can use a formula to convert the value of 1 in the tile number sequence into [placeholder] and other values into 0.