i have table with month informations and i want to separate them by days and create a chart.
i know do it separate them by month using โeomonthโ, but how separete by days?
Can you elaborate more? Iโm not sure I understand.
exemple:
i want to use formula โCountโ to how many problems have in that day. like this:
day 13 from august there is 3 problems:
2019-08-13 20:07:17 problem A
2019-08-13 20:07:14 problem B
2019-08-13 20:07:17 problem C
day 15 from august there is 5 problems:
2019-08-15 20:07:17 problem A
2019-08-15 20:07:14 problem B
2019-08-15 20:07:17 problem C
2019-08-15 20:07:17 problem D
2019-08-15 20:07:17 problem E
and do a chart, by month and when i click by day
THIS IS NOT TESTED!
Add a user setting column named Start Date to contain the date of the start of the report period.
(
EOMONTH(TODAY(), -2)
+ MIN(
LIST(
DAY(TODAY()),
DAY(EOMONTH(TODAY(), -1))
)
)
)
Add a user setting column named End Date to contain the date of the end of the report period.
(
EOMONTH([[Start Date]], 0)
+ MIN(
LIST(
DAY([[Start Date]]),
DAY(EOMONTH([[Start Date]], 1))
)
)
)
Create a new worksheet to serve as the basis of the report table.
Create a new table in your app for the worksheet created above.
Configure the Day column of the new Problem Report table.
Add a virtual column to the Problem Report table for the Dayโs date.
IFS
(
(USERSETTINGS("Start Date") + [Day] - 1)
< USERSETTINGS("End Date")
),
(USERSETTINGS("Start Date") + [Day] - 1)
)
Add a virtual column to the Problem Report table for the list of the Dayโs problems.
IFS(
ISNOTBLANK([Date]),
FILTER(
"Problems",
(
DATE([Timestamp])
= [_THISROW].[Date])
)
)
)
Add a virtual column to the Problem Report table for the count of the Dayโs problems.
IFS(
ISNOTBLANK([Date]),
COUNT([Problems])
)
@Johny_Freitas, one solution could be to setup a separate sheet using sheet formulas where the data is shaped like you want.
User | Count |
---|---|
17 | |
12 | |
5 | |
5 | |
5 |