Reputation: 107
Based on one cell with dates (some of them repeats multiple times):
How to create the Google Sheets chart, where line goes up only when calendar day is exist in cell (and goes up multiply, based on x times when date repeats in cell)?
As a result:
Upvotes: 1
Views: 1085
Reputation: 1
see if this will do:
=QUERY(A1:A; "select A,count(A) where A is not null group by A label count(A)''")
=SORT({QUERY(A1:A; "select A,count(A) where A is not null group by A label count(A)''");
QUERY(SEQUENCE(MAX(A:A)-MIN(A:A)+1; 1; MIN(A:A))*{1\0};
"where not Col1 matches '"&TEXTJOIN("|"; 1; N(A:A))&"'")}; 1; 1)
Upvotes: 1