2

I am trying to plot frequency per day from a column in a chart.

The column has entries for multiple dates of month and may have multiple entries per day. I want to plot those in a chart . Using X-axis as the date.

I have explored multiple options and it looks like I may have to use count-ifs but could not get in detail answer/explanation

Sample Data.

Sample list: https://docs.google.com/spreadsheets/d/18wF8Q3wEXSQDkRnSA4F1064rbKJmk-jw4A4xgcNAKVQ/edit?usp=sharing

the graph

Sample formula tried by me

player0
  • 124,011
  • 12
  • 67
  • 124
CodeMonkey
  • 2,265
  • 9
  • 48
  • 94

2 Answers2

0

I comprehend that you want to plot that table into a graph that shows the multiple price frequency per day. If my assumption is right, you can use a scatter chart like this one: Scatter chart

Jacques-Guzel Heron
  • 2,480
  • 1
  • 7
  • 16
0

maybe:

=ARRAYFORMULA(SPLIT(TRANSPOSE(QUERY({QUERY({A2:B, ROW(C2:C)}, 
 "select sum(Col3) where Col1 is not null group by Col2 pivot Col1 limit 0"); 
 IF(QUERY(QUERY({A2:B, ROW(C2:C)}, 
 "select sum(Col3) where Col1 is not null group by Col2 pivot Col1"), 
 "offset 1", 0)<>0, QUERY(QUERY({A2:B, ROW(C2:C)}, 
 "select Col2,sum(Col3) where Col1 is not null group by Col2 pivot Col1"), 
 "select Col1 offset 1", 0), )},,99^99)), " "))

0

spreadsheet demo

player0
  • 124,011
  • 12
  • 67
  • 124