Como realizar contagem de datas específicas?

  • Create a math column that converts the date to a number without the time.
Year(Date) * 10^4
+ Month(Date) * 10^2
+ Day(Date)
  • Create a relation column that links the math column to itself.
  • Create a rollup column that gets the count from the relation.
2 Likes