I have a set of logs that log when people come into a certain location. The log captures, name and date/time. The logs also include age of the person coming in.
How can I use tableau to calculate the % of people who come into the location at least once a month for 12 months (my logs spans 12 months of data) further segmented by age range?
The second part is easy, but how about first?
"For each name - calculate number of times they came in at least once every month. So minimum is 1 , maximum is 12 call this unique monthly visits per year."
This formula will do that: {FIXED [Name] : COUNTD(MONTH[Date])}
"Then average the unique monthly visits per year for each group, where each group is people segmented by age."
Perhaps this will do it for you? AVG({FIXED [Name] : COUNTD(MONTH[Date])})