3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Mock function to generate some random sales data, sometimes returning nothing. function getLocationSalesForDate(DateTime $date, string $location) { // Your business logic goes here. // Get the date as a string using DateTime::format(). // Return a random mock value for this demo. Will randomly return NULL so as to simulate // your table view. return (mt_rand(0, 3) === 1)?NULL:mt_rand(15, 70); } $locations = ['city 1', 'city 2', 'city 3', 'city 4', 'city 5', 'city 6']; $numColumns = 3; $dateStart = new DateTime; // 'P7D' means a period ('P') of 7 ('7') days ('D') from $dateStart. Consult the documentation of DateInterval's constructor for details. $dateEnd = (clone $dateStart)->add(new DateInterval('P7D')); // Segment your locations to however many you want to show on a single line. foreach (array_chunk($locations, $numColumns) as $columnHeadings) { // Output table haeding for this group of locations. $html = <<<EOT <table> <thead> <tr> <th>Date</th> EOT; // Write out each location as a column heading. foreach ($columnHeadings as $columnHeading) $html .= <<<EOT <th>$columnHeading</th> EOT; $html .= <<<EOT </tr> </thead> EOT; // Output sales per day for this location. $html .= <<<EOT <tbody> EOT; // Loop through each day between $dateStart and $dateEnd. $dateIterator = clone $dateStart; while ($dateIterator != $dateEnd) { // Start new row, print date on first column. $html .= <<<EOT <tr> <td>{$dateIterator->format('Y-m-d')}</td> EOT; // Loop through this segment's locations and fetch sales for this day. foreach ($columnHeadings as $location) { // Retrieve mock sales data for this day on this location. $sales = getLocationSalesForDate($dateIterator, $location); // Record sales if we have any. if ($sales) // Have sales. $html .= <<<EOT <td>$sales</td> EOT; else // No sales for this day. $html .= <<<EOT <td><!-- Empty cell if no sales recorded for this location on this day. --></td> EOT; } // Close sales data row. $html .= <<<EOT </tr> EOT; // Advance to next day for this location. $dateIterator->add(new DateInterval('P1D')); } // Close table for this location group. $html .= <<<EOT </tbody> </table> EOT; // Output table to user. echo $html; }
Output for 7.4.12
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>27</td> <td>69</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>24</td> </tr> <tr> <td>2020-11-03</td> <td>25</td> <td>47</td> <td>50</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>29</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>68</td> <td>52</td> <td>35</td> </tr> <tr> <td>2020-11-06</td> <td>32</td> <td>38</td> <td>53</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>18</td> <td>29</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>39</td> <td>28</td> <td>16</td> </tr> <tr> <td>2020-11-02</td> <td>50</td> <td>36</td> <td>39</td> </tr> <tr> <td>2020-11-03</td> <td>25</td> <td>34</td> <td>39</td> </tr> <tr> <td>2020-11-04</td> <td>67</td> <td>45</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>66</td> <td>40</td> <td>17</td> </tr> <tr> <td>2020-11-06</td> <td>62</td> <td>27</td> <td>63</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>15</td> <td>21</td> </tr> </tbody> </table>
Output for 7.4.11
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>56</td> <td>30</td> <td>16</td> </tr> <tr> <td>2020-11-02</td> <td>69</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>40</td> </tr> <tr> <td>2020-11-03</td> <td>32</td> <td>41</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>30</td> <td>40</td> <td>63</td> </tr> <tr> <td>2020-11-05</td> <td>34</td> <td>68</td> <td>48</td> </tr> <tr> <td>2020-11-06</td> <td>21</td> <td>66</td> <td>61</td> </tr> <tr> <td>2020-11-07</td> <td>22</td> <td>61</td> <td>38</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>67</td> <td>34</td> </tr> <tr> <td>2020-11-02</td> <td>30</td> <td>57</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>57</td> <td>33</td> <td>34</td> </tr> <tr> <td>2020-11-04</td> <td>61</td> <td>46</td> <td>32</td> </tr> <tr> <td>2020-11-05</td> <td>57</td> <td>64</td> <td>41</td> </tr> <tr> <td>2020-11-06</td> <td>33</td> <td>18</td> <td>31</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>28</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.4.10
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>67</td> <td>17</td> </tr> <tr> <td>2020-11-02</td> <td>30</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>31</td> </tr> <tr> <td>2020-11-03</td> <td>43</td> <td>58</td> <td>38</td> </tr> <tr> <td>2020-11-04</td> <td>52</td> <td>62</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>63</td> <td>52</td> <td>57</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>68</td> <td>63</td> </tr> <tr> <td>2020-11-07</td> <td>56</td> <td>60</td> <td>69</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>68</td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>32</td> <td>25</td> <td>21</td> </tr> <tr> <td>2020-11-03</td> <td>35</td> <td>66</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>21</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>22</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> </tr> <tr> <td>2020-11-06</td> <td>63</td> <td>63</td> <td>39</td> </tr> <tr> <td>2020-11-07</td> <td>70</td> <td>19</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.4.9
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>56</td> <td>63</td> <td>20</td> </tr> <tr> <td>2020-11-02</td> <td>27</td> <td>35</td> <td>52</td> </tr> <tr> <td>2020-11-03</td> <td>64</td> <td>30</td> <td>69</td> </tr> <tr> <td>2020-11-04</td> <td>19</td> <td>39</td> <td>23</td> </tr> <tr> <td>2020-11-05</td> <td>51</td> <td>30</td> <td>19</td> </tr> <tr> <td>2020-11-06</td> <td>63</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>29</td> </tr> <tr> <td>2020-11-07</td> <td>33</td> <td>64</td> <td>27</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> <td>24</td> </tr> <tr> <td>2020-11-02</td> <td>16</td> <td>39</td> <td>70</td> </tr> <tr> <td>2020-11-03</td> <td>31</td> <td>26</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>22</td> <td>70</td> <td>27</td> </tr> <tr> <td>2020-11-05</td> <td>67</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>66</td> </tr> <tr> <td>2020-11-06</td> <td>55</td> <td>16</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>37</td> <td>33</td> <td>58</td> </tr> </tbody> </table>
Output for 7.4.8
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>46</td> <td>45</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>67</td> <td>52</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>29</td> <td>23</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>23</td> <td>28</td> <td>56</td> </tr> <tr> <td>2020-11-07</td> <td>68</td> <td>30</td> <td>65</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>19</td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>31</td> <td>64</td> <td>62</td> </tr> <tr> <td>2020-11-03</td> <td>26</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>40</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>66</td> <td>26</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>52</td> <td>57</td> </tr> <tr> <td>2020-11-06</td> <td>57</td> <td>50</td> <td>34</td> </tr> <tr> <td>2020-11-07</td> <td>52</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.4.7
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>46</td> <td>46</td> <td>54</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>37</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>46</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>40</td> <td>26</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>67</td> <td>51</td> <td>68</td> </tr> <tr> <td>2020-11-06</td> <td>68</td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>36</td> <td>40</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>48</td> <td>40</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>43</td> <td>29</td> <td>46</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>55</td> <td>26</td> </tr> <tr> <td>2020-11-04</td> <td>24</td> <td>36</td> <td>27</td> </tr> <tr> <td>2020-11-05</td> <td>37</td> <td>55</td> <td>38</td> </tr> <tr> <td>2020-11-06</td> <td>56</td> <td>26</td> <td>27</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>68</td> <td>48</td> </tr> </tbody> </table>
Output for 7.4.6
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>31</td> <td>49</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>23</td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>64</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>26</td> </tr> <tr> <td>2020-11-04</td> <td>54</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>49</td> </tr> <tr> <td>2020-11-05</td> <td>47</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>42</td> </tr> <tr> <td>2020-11-06</td> <td>34</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>18</td> <td>65</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>66</td> <td>62</td> </tr> <tr> <td>2020-11-02</td> <td>67</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>15</td> <td>41</td> <td>15</td> </tr> <tr> <td>2020-11-04</td> <td>27</td> <td>30</td> <td>50</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>29</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>30</td> <td>31</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>50</td> <td>38</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.4.5
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>69</td> <td>46</td> <td>25</td> </tr> <tr> <td>2020-11-02</td> <td>53</td> <td>36</td> <td>40</td> </tr> <tr> <td>2020-11-03</td> <td>64</td> <td>20</td> <td>38</td> </tr> <tr> <td>2020-11-04</td> <td>51</td> <td>24</td> <td>38</td> </tr> <tr> <td>2020-11-05</td> <td>50</td> <td>20</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>61</td> <td>33</td> </tr> <tr> <td>2020-11-07</td> <td>15</td> <td>58</td> <td>44</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>45</td> <td>69</td> <td>18</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> <td>15</td> </tr> <tr> <td>2020-11-03</td> <td>51</td> <td>55</td> <td>34</td> </tr> <tr> <td>2020-11-04</td> <td>67</td> <td>47</td> <td>41</td> </tr> <tr> <td>2020-11-05</td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>40</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>52</td> <td>68</td> </tr> <tr> <td>2020-11-07</td> <td>35</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.4.4
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>17</td> <td>54</td> <td>51</td> </tr> <tr> <td>2020-11-02</td> <td>29</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>55</td> </tr> <tr> <td>2020-11-03</td> <td>56</td> <td>29</td> <td>68</td> </tr> <tr> <td>2020-11-04</td> <td>22</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>43</td> </tr> <tr> <td>2020-11-05</td> <td>64</td> <td>33</td> <td>57</td> </tr> <tr> <td>2020-11-06</td> <td>37</td> <td>68</td> <td>29</td> </tr> <tr> <td>2020-11-07</td> <td>35</td> <td>70</td> <td>36</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>20</td> <td>44</td> <td>62</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>45</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>23</td> <td>50</td> </tr> <tr> <td>2020-11-04</td> <td>62</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>24</td> <td>27</td> <td>15</td> </tr> <tr> <td>2020-11-06</td> <td>46</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> </tr> <tr> <td>2020-11-07</td> <td>26</td> <td>15</td> <td>29</td> </tr> </tbody> </table>
Output for 7.4.3
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>70</td> <td>37</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>25</td> <td>52</td> </tr> <tr> <td>2020-11-03</td> <td>19</td> <td>24</td> <td>54</td> </tr> <tr> <td>2020-11-04</td> <td>55</td> <td>60</td> <td>59</td> </tr> <tr> <td>2020-11-05</td> <td>54</td> <td>53</td> <td>15</td> </tr> <tr> <td>2020-11-06</td> <td>48</td> <td>38</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>68</td> <td>38</td> <td>69</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>37</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>22</td> </tr> <tr> <td>2020-11-02</td> <td>49</td> <td>33</td> <td>19</td> </tr> <tr> <td>2020-11-03</td> <td>51</td> <td>18</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>26</td> <td>18</td> <td>36</td> </tr> <tr> <td>2020-11-05</td> <td>62</td> <td>67</td> <td>55</td> </tr> <tr> <td>2020-11-06</td> <td>29</td> <td>58</td> <td>41</td> </tr> <tr> <td>2020-11-07</td> <td>25</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>45</td> </tr> </tbody> </table>
Output for 7.4.2
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>30</td> <td>17</td> <td>60</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>50</td> <td>56</td> </tr> <tr> <td>2020-11-03</td> <td>49</td> <td>57</td> <td>68</td> </tr> <tr> <td>2020-11-04</td> <td>35</td> <td>42</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>70</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>38</td> </tr> <tr> <td>2020-11-07</td> <td>21</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>22</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>20</td> <td>60</td> </tr> <tr> <td>2020-11-02</td> <td>60</td> <td>27</td> <td>68</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> <td>50</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>65</td> <td>49</td> </tr> <tr> <td>2020-11-05</td> <td>45</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>36</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>46</td> <td>54</td> </tr> <tr> <td>2020-11-07</td> <td>35</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>32</td> </tr> </tbody> </table>
Output for 7.4.1
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>63</td> <td>65</td> <td>53</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>64</td> <td>45</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>32</td> <td>48</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>56</td> <td>17</td> </tr> <tr> <td>2020-11-05</td> <td>52</td> <td>47</td> <td>52</td> </tr> <tr> <td>2020-11-06</td> <td>58</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>40</td> <td>19</td> <td>61</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>28</td> <td>56</td> <td>42</td> </tr> <tr> <td>2020-11-02</td> <td>55</td> <td>52</td> <td>44</td> </tr> <tr> <td>2020-11-03</td> <td>29</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>56</td> </tr> <tr> <td>2020-11-04</td> <td>70</td> <td>52</td> <td>70</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>46</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>30</td> <td>35</td> <td>30</td> </tr> <tr> <td>2020-11-07</td> <td>44</td> <td>33</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.4.0
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>54</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>48</td> <td>61</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>21</td> <td>43</td> <td>37</td> </tr> <tr> <td>2020-11-04</td> <td>32</td> <td>47</td> <td>42</td> </tr> <tr> <td>2020-11-05</td> <td>33</td> <td>34</td> <td>31</td> </tr> <tr> <td>2020-11-06</td> <td>52</td> <td>47</td> <td>39</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>27</td> <td>69</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>52</td> <td>37</td> <td>48</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>67</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>58</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>38</td> <td>65</td> <td>41</td> </tr> <tr> <td>2020-11-05</td> <td>60</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>26</td> <td>70</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>43</td> <td>31</td> </tr> </tbody> </table>
Output for 7.3.24
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>50</td> <td>43</td> <td>50</td> </tr> <tr> <td>2020-11-02</td> <td>49</td> <td>53</td> <td>42</td> </tr> <tr> <td>2020-11-03</td> <td>31</td> <td>46</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>48</td> <td>26</td> </tr> <tr> <td>2020-11-05</td> <td>65</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>18</td> <td>43</td> <td>51</td> </tr> <tr> <td>2020-11-07</td> <td>17</td> <td>32</td> <td>29</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>47</td> <td>21</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>49</td> <td>61</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>22</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>35</td> </tr> <tr> <td>2020-11-04</td> <td>69</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>18</td> </tr> <tr> <td>2020-11-05</td> <td>29</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>35</td> <td>47</td> </tr> <tr> <td>2020-11-07</td> <td>31</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>24</td> </tr> </tbody> </table>
Output for 7.3.23
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>70</td> <td>32</td> <td>68</td> </tr> <tr> <td>2020-11-02</td> <td>27</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>43</td> <td>31</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>66</td> <td>46</td> </tr> <tr> <td>2020-11-05</td> <td>25</td> <td>18</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>20</td> <td>20</td> <td>70</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>53</td> <td>31</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>38</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>64</td> <td>43</td> </tr> <tr> <td>2020-11-03</td> <td>61</td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>40</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>39</td> <td>35</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>57</td> <td>48</td> </tr> <tr> <td>2020-11-07</td> <td>52</td> <td>24</td> <td>40</td> </tr> </tbody> </table>
Output for 7.3.22
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>35</td> <td>23</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>38</td> <td>58</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>57</td> <td>19</td> </tr> <tr> <td>2020-11-04</td> <td>36</td> <td>30</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>21</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>36</td> <td>42</td> <td>51</td> </tr> <tr> <td>2020-11-07</td> <td>16</td> <td>65</td> <td>46</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>69</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>29</td> <td>49</td> <td>18</td> </tr> <tr> <td>2020-11-03</td> <td>57</td> <td>24</td> <td>36</td> </tr> <tr> <td>2020-11-04</td> <td>18</td> <td>39</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>65</td> <td>63</td> <td>37</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> </tr> <tr> <td>2020-11-07</td> <td>41</td> <td>59</td> <td>37</td> </tr> </tbody> </table>
Output for 7.3.21
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>66</td> <td>38</td> <td>51</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>30</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> </tr> <tr> <td>2020-11-05</td> <td>19</td> <td>43</td> <td>47</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>36</td> <td>70</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>47</td> <td>25</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>69</td> <td>43</td> <td>48</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>40</td> <td>41</td> </tr> <tr> <td>2020-11-03</td> <td>22</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>45</td> </tr> <tr> <td>2020-11-04</td> <td>34</td> <td>49</td> <td>37</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> <td>69</td> </tr> <tr> <td>2020-11-06</td> <td>55</td> <td>15</td> <td>52</td> </tr> <tr> <td>2020-11-07</td> <td>65</td> <td>20</td> <td>63</td> </tr> </tbody> </table>
Output for 7.3.20
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>64</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>43</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>24</td> </tr> <tr> <td>2020-11-03</td> <td>38</td> <td>70</td> <td>66</td> </tr> <tr> <td>2020-11-04</td> <td>45</td> <td>35</td> <td>24</td> </tr> <tr> <td>2020-11-05</td> <td>28</td> <td>67</td> <td>43</td> </tr> <tr> <td>2020-11-06</td> <td>62</td> <td>25</td> <td>66</td> </tr> <tr> <td>2020-11-07</td> <td>26</td> <td>44</td> <td>67</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>56</td> <td>65</td> <td>15</td> </tr> <tr> <td>2020-11-02</td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>37</td> <td>31</td> <td>31</td> </tr> <tr> <td>2020-11-04</td> <td>29</td> <td>61</td> <td>61</td> </tr> <tr> <td>2020-11-05</td> <td>60</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>47</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>40</td> </tr> <tr> <td>2020-11-07</td> <td>50</td> <td>65</td> <td>25</td> </tr> </tbody> </table>
Output for 7.3.19
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>64</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> </tr> <tr> <td>2020-11-02</td> <td>32</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>28</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>47</td> <td>28</td> </tr> <tr> <td>2020-11-04</td> <td>24</td> <td>53</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>28</td> <td>37</td> <td>59</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>58</td> <td>17</td> </tr> <tr> <td>2020-11-07</td> <td>34</td> <td>47</td> <td>60</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>48</td> <td>47</td> <td>18</td> </tr> <tr> <td>2020-11-02</td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>49</td> </tr> <tr> <td>2020-11-03</td> <td>31</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>56</td> <td>65</td> <td>41</td> </tr> <tr> <td>2020-11-06</td> <td>20</td> <td>42</td> <td>58</td> </tr> <tr> <td>2020-11-07</td> <td>18</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>31</td> </tr> </tbody> </table>
Output for 7.3.18
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>31</td> <td>27</td> <td>64</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>22</td> </tr> <tr> <td>2020-11-03</td> <td>36</td> <td>25</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>28</td> <td>57</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>19</td> <td>46</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>26</td> <td>37</td> <td>16</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>61</td> <td>62</td> <td>30</td> </tr> <tr> <td>2020-11-02</td> <td>28</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>32</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>54</td> <td>45</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>54</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>68</td> <td>22</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>43</td> <td>38</td> </tr> </tbody> </table>
Output for 7.3.17
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>28</td> <td>60</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>33</td> <td>16</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>32</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>25</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>61</td> <td>63</td> <td>69</td> </tr> <tr> <td>2020-11-06</td> <td>23</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>69</td> </tr> <tr> <td>2020-11-07</td> <td>54</td> <td>28</td> <td>20</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>67</td> <td>45</td> <td>59</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>37</td> <td>56</td> </tr> <tr> <td>2020-11-03</td> <td>51</td> <td>51</td> <td>22</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>46</td> <td>61</td> </tr> <tr> <td>2020-11-05</td> <td>57</td> <td>23</td> <td>23</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>60</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>61</td> <td>64</td> </tr> </tbody> </table>
Output for 7.3.16
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>43</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>25</td> </tr> <tr> <td>2020-11-02</td> <td>28</td> <td>36</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>25</td> <td>58</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>59</td> <td>29</td> <td>60</td> </tr> <tr> <td>2020-11-05</td> <td>57</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>60</td> </tr> <tr> <td>2020-11-06</td> <td>28</td> <td>37</td> <td>21</td> </tr> <tr> <td>2020-11-07</td> <td>39</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>62</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>26</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>36</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>31</td> </tr> <tr> <td>2020-11-04</td> <td>30</td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>34</td> <td>38</td> <td>54</td> </tr> <tr> <td>2020-11-06</td> <td>57</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>32</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.3.15
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>59</td> <td>52</td> <td>56</td> </tr> <tr> <td>2020-11-02</td> <td>49</td> <td>68</td> <td>17</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>61</td> <td>20</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>18</td> </tr> <tr> <td>2020-11-05</td> <td>15</td> <td>21</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>23</td> <td>63</td> <td>70</td> </tr> <tr> <td>2020-11-07</td> <td>53</td> <td>40</td> <td>53</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>55</td> <td>68</td> <td>57</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>49</td> <td>39</td> <td>25</td> </tr> <tr> <td>2020-11-05</td> <td>61</td> <td>67</td> <td>42</td> </tr> <tr> <td>2020-11-06</td> <td>15</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>19</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.3.14
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>32</td> <td>24</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>37</td> <td>37</td> </tr> <tr> <td>2020-11-03</td> <td>34</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>20</td> <td>26</td> <td>25</td> </tr> <tr> <td>2020-11-05</td> <td>18</td> <td>44</td> <td>17</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>68</td> <td>62</td> </tr> <tr> <td>2020-11-07</td> <td>62</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>35</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> </tr> <tr> <td>2020-11-02</td> <td>32</td> <td>29</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>37</td> <td>64</td> <td>62</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> <td>53</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>25</td> <td>48</td> </tr> <tr> <td>2020-11-06</td> <td>62</td> <td>53</td> <td>49</td> </tr> <tr> <td>2020-11-07</td> <td>18</td> <td>26</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.3.13
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>39</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>48</td> <td>21</td> </tr> <tr> <td>2020-11-04</td> <td>35</td> <td>39</td> <td>33</td> </tr> <tr> <td>2020-11-05</td> <td>26</td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>31</td> <td>49</td> <td>20</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>52</td> <td>50</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>22</td> <td>18</td> <td>68</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>64</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>70</td> <td>27</td> </tr> <tr> <td>2020-11-04</td> <td>33</td> <td>55</td> <td>27</td> </tr> <tr> <td>2020-11-05</td> <td>28</td> <td>61</td> <td>37</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>59</td> <td>31</td> </tr> <tr> <td>2020-11-07</td> <td>18</td> <td>49</td> <td>24</td> </tr> </tbody> </table>
Output for 7.3.12
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>15</td> <td>59</td> <td>40</td> </tr> <tr> <td>2020-11-02</td> <td>42</td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>25</td> <td>28</td> <td>32</td> </tr> <tr> <td>2020-11-04</td> <td>19</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>55</td> </tr> <tr> <td>2020-11-05</td> <td>69</td> <td>34</td> <td>15</td> </tr> <tr> <td>2020-11-06</td> <td>27</td> <td>56</td> <td>66</td> </tr> <tr> <td>2020-11-07</td> <td>18</td> <td>18</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>70</td> <td>66</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>16</td> <td>34</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>16</td> <td>59</td> <td>29</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>39</td> </tr> <tr> <td>2020-11-05</td> <td>58</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>33</td> <td>64</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>58</td> <td>30</td> <td>54</td> </tr> </tbody> </table>
Output for 7.3.11
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>33</td> <td>66</td> <td>21</td> </tr> <tr> <td>2020-11-02</td> <td>53</td> <td>15</td> <td>47</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>60</td> <td>67</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>27</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>66</td> <td>28</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>26</td> <td>68</td> </tr> <tr> <td>2020-11-07</td> <td>23</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>37</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>30</td> <td>51</td> <td>62</td> </tr> <tr> <td>2020-11-02</td> <td>61</td> <td>35</td> <td>67</td> </tr> <tr> <td>2020-11-03</td> <td>45</td> <td>36</td> <td>32</td> </tr> <tr> <td>2020-11-04</td> <td>43</td> <td>33</td> <td>24</td> </tr> <tr> <td>2020-11-05</td> <td>64</td> <td>47</td> <td>20</td> </tr> <tr> <td>2020-11-06</td> <td>44</td> <td>36</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>45</td> <td>62</td> <td>63</td> </tr> </tbody> </table>
Output for 7.3.10
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>57</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>20</td> </tr> <tr> <td>2020-11-02</td> <td>16</td> <td>35</td> <td>39</td> </tr> <tr> <td>2020-11-03</td> <td>16</td> <td>68</td> <td>21</td> </tr> <tr> <td>2020-11-04</td> <td>16</td> <td>46</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>30</td> <td>26</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>26</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>32</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>38</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>43</td> </tr> <tr> <td>2020-11-02</td> <td>18</td> <td>52</td> <td>69</td> </tr> <tr> <td>2020-11-03</td> <td>44</td> <td>27</td> <td>23</td> </tr> <tr> <td>2020-11-04</td> <td>41</td> <td>69</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>53</td> <td>68</td> </tr> <tr> <td>2020-11-06</td> <td>66</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>48</td> </tr> <tr> <td>2020-11-07</td> <td>35</td> <td>68</td> <td>70</td> </tr> </tbody> </table>
Output for 7.3.9
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>27</td> <td>35</td> <td>66</td> </tr> <tr> <td>2020-11-02</td> <td>26</td> <td>60</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>19</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>30</td> <td>33</td> <td>43</td> </tr> <tr> <td>2020-11-05</td> <td>39</td> <td>41</td> <td>55</td> </tr> <tr> <td>2020-11-06</td> <td>67</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>51</td> <td>65</td> <td>29</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>44</td> <td>67</td> <td>22</td> </tr> <tr> <td>2020-11-02</td> <td>66</td> <td>48</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>20</td> <td>22</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>18</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>28</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>22</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>60</td> </tr> <tr> <td>2020-11-07</td> <td>35</td> <td>30</td> <td>66</td> </tr> </tbody> </table>
Output for 7.3.8
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>65</td> <td>43</td> <td>55</td> </tr> <tr> <td>2020-11-02</td> <td>22</td> <td>67</td> <td>34</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>30</td> </tr> <tr> <td>2020-11-04</td> <td>22</td> <td>67</td> <td>48</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>64</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>43</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>61</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>36</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>50</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>43</td> </tr> <tr> <td>2020-11-02</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>22</td> </tr> <tr> <td>2020-11-03</td> <td>25</td> <td>40</td> <td>67</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>38</td> <td>32</td> </tr> <tr> <td>2020-11-05</td> <td>22</td> <td>48</td> <td>55</td> </tr> <tr> <td>2020-11-06</td> <td>22</td> <td>25</td> <td>38</td> </tr> <tr> <td>2020-11-07</td> <td>40</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>32</td> </tr> </tbody> </table>
Output for 7.3.7
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>38</td> <td>27</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>62</td> <td>38</td> <td>39</td> </tr> <tr> <td>2020-11-03</td> <td>57</td> <td>35</td> <td>64</td> </tr> <tr> <td>2020-11-04</td> <td>35</td> <td>43</td> <td>34</td> </tr> <tr> <td>2020-11-05</td> <td>35</td> <td>68</td> <td>55</td> </tr> <tr> <td>2020-11-06</td> <td>18</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>61</td> </tr> <tr> <td>2020-11-07</td> <td>41</td> <td>66</td> <td>39</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>47</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>44</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>23</td> <td>50</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>63</td> <td>37</td> <td>16</td> </tr> <tr> <td>2020-11-05</td> <td>52</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>63</td> </tr> <tr> <td>2020-11-06</td> <td>47</td> <td>35</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>63</td> <td>31</td> <td>55</td> </tr> </tbody> </table>
Output for 7.3.6
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>59</td> <td>41</td> <td>36</td> </tr> <tr> <td>2020-11-02</td> <td>44</td> <td>38</td> <td>56</td> </tr> <tr> <td>2020-11-03</td> <td>39</td> <td>37</td> <td>21</td> </tr> <tr> <td>2020-11-04</td> <td>70</td> <td>69</td> <td>22</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>59</td> <td>20</td> </tr> <tr> <td>2020-11-06</td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>61</td> <td>61</td> <td>44</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>65</td> <td>37</td> <td>58</td> </tr> <tr> <td>2020-11-02</td> <td>35</td> <td>64</td> <td>29</td> </tr> <tr> <td>2020-11-03</td> <td>29</td> <td>44</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>48</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>27</td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>47</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>48</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>24</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.3.5
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>55</td> <td>36</td> <td>26</td> </tr> <tr> <td>2020-11-02</td> <td>41</td> <td>54</td> <td>66</td> </tr> <tr> <td>2020-11-03</td> <td>42</td> <td>63</td> <td>38</td> </tr> <tr> <td>2020-11-04</td> <td>69</td> <td>30</td> <td>53</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>37</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>60</td> </tr> <tr> <td>2020-11-07</td> <td>37</td> <td>24</td> <td>70</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>46</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>52</td> <td>20</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> <td>60</td> </tr> <tr> <td>2020-11-04</td> <td>17</td> <td>45</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>64</td> <td>40</td> <td>40</td> </tr> <tr> <td>2020-11-06</td> <td>64</td> <td>39</td> <td>36</td> </tr> <tr> <td>2020-11-07</td> <td>40</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>52</td> </tr> </tbody> </table>
Output for 7.3.4
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>21</td> <td>56</td> <td>58</td> </tr> <tr> <td>2020-11-02</td> <td>61</td> <td>60</td> <td>61</td> </tr> <tr> <td>2020-11-03</td> <td>18</td> <td>28</td> <td>36</td> </tr> <tr> <td>2020-11-04</td> <td>50</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>36</td> </tr> <tr> <td>2020-11-05</td> <td>26</td> <td>45</td> <td>42</td> </tr> <tr> <td>2020-11-06</td> <td>64</td> <td>16</td> <td>24</td> </tr> <tr> <td>2020-11-07</td> <td>15</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>56</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>19</td> <td>57</td> <td>31</td> </tr> <tr> <td>2020-11-02</td> <td>37</td> <td>51</td> <td>32</td> </tr> <tr> <td>2020-11-03</td> <td>68</td> <td>37</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>34</td> <td>52</td> <td>41</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>38</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>42</td> <td>27</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>29</td> <td>69</td> <td>17</td> </tr> </tbody> </table>
Output for 7.3.3
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>28</td> <td>38</td> <td>60</td> </tr> <tr> <td>2020-11-02</td> <td>33</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>56</td> </tr> <tr> <td>2020-11-03</td> <td>58</td> <td>19</td> <td>60</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> <td>69</td> </tr> <tr> <td>2020-11-05</td> <td>51</td> <td>43</td> <td>59</td> </tr> <tr> <td>2020-11-06</td> <td>49</td> <td>29</td> <td>53</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>33</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>25</td> <td>42</td> <td>38</td> </tr> <tr> <td>2020-11-03</td> <td>48</td> <td>48</td> <td>63</td> </tr> <tr> <td>2020-11-04</td> <td>54</td> <td>61</td> <td>58</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>15</td> <td>49</td> <td>33</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>53</td> <td>37</td> </tr> </tbody> </table>
Output for 7.3.2
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>27</td> <td>24</td> </tr> <tr> <td>2020-11-02</td> <td>19</td> <td>43</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>45</td> <td>36</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>57</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>46</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>36</td> </tr> <tr> <td>2020-11-06</td> <td>24</td> <td>63</td> <td>24</td> </tr> <tr> <td>2020-11-07</td> <td>50</td> <td>18</td> <td>40</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>19</td> <td>50</td> <td>63</td> </tr> <tr> <td>2020-11-02</td> <td>66</td> <td>35</td> <td>28</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>60</td> <td>17</td> </tr> <tr> <td>2020-11-04</td> <td>60</td> <td>62</td> <td>38</td> </tr> <tr> <td>2020-11-05</td> <td>21</td> <td>64</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>33</td> </tr> <tr> <td>2020-11-07</td> <td>58</td> <td>59</td> <td>63</td> </tr> </tbody> </table>
Output for 7.3.1
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>15</td> <td>47</td> </tr> <tr> <td>2020-11-02</td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>57</td> </tr> <tr> <td>2020-11-03</td> <td>35</td> <td>63</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>29</td> <td>31</td> <td>16</td> </tr> <tr> <td>2020-11-05</td> <td>28</td> <td>42</td> <td>61</td> </tr> <tr> <td>2020-11-06</td> <td>60</td> <td>16</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>23</td> <td>17</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>70</td> <td>34</td> <td>65</td> </tr> <tr> <td>2020-11-02</td> <td>68</td> <td>43</td> <td>36</td> </tr> <tr> <td>2020-11-03</td> <td>59</td> <td>22</td> <td>55</td> </tr> <tr> <td>2020-11-04</td> <td>24</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>53</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>64</td> </tr> <tr> <td>2020-11-06</td> <td>50</td> <td>48</td> <td>28</td> </tr> <tr> <td>2020-11-07</td> <td>56</td> <td>64</td> <td>54</td> </tr> </tbody> </table>
Output for 7.3.0
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>15</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>49</td> </tr> <tr> <td>2020-11-02</td> <td>53</td> <td>64</td> <td>59</td> </tr> <tr> <td>2020-11-03</td> <td>22</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>19</td> <td>67</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>35</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>65</td> <td>28</td> <td>36</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>32</td> <td>18</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>43</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>48</td> </tr> <tr> <td>2020-11-02</td> <td>22</td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>16</td> <td>47</td> <td>41</td> </tr> <tr> <td>2020-11-04</td> <td>53</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>34</td> <td>34</td> <td>57</td> </tr> <tr> <td>2020-11-06</td> <td>58</td> <td>38</td> <td>21</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> </tr> </tbody> </table>
Output for 7.2.34
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>26</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>22</td> </tr> <tr> <td>2020-11-02</td> <td>28</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>29</td> <td>56</td> </tr> <tr> <td>2020-11-04</td> <td>52</td> <td>19</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>16</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>31</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>47</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>51</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>27</td> <td>36</td> <td>48</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>24</td> <td>41</td> </tr> <tr> <td>2020-11-03</td> <td>37</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>53</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>40</td> <td>40</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>65</td> <td>47</td> </tr> <tr> <td>2020-11-06</td> <td>32</td> <td>16</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>49</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.2.33
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>52</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>31</td> </tr> <tr> <td>2020-11-02</td> <td>18</td> <td>28</td> <td>33</td> </tr> <tr> <td>2020-11-03</td> <td>32</td> <td>21</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>37</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>21</td> </tr> <tr> <td>2020-11-05</td> <td>64</td> <td>29</td> <td>26</td> </tr> <tr> <td>2020-11-06</td> <td>44</td> <td>37</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>25</td> <td>47</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>16</td> <td>42</td> <td>62</td> </tr> <tr> <td>2020-11-02</td> <td>58</td> <td>52</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>30</td> <td>40</td> <td>46</td> </tr> <tr> <td>2020-11-04</td> <td>29</td> <td>40</td> <td>41</td> </tr> <tr> <td>2020-11-05</td> <td>53</td> <td>38</td> <td>16</td> </tr> <tr> <td>2020-11-06</td> <td>24</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>66</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>29</td> </tr> </tbody> </table>
Output for 7.2.32
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>63</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>41</td> <td>47</td> <td>44</td> </tr> <tr> <td>2020-11-03</td> <td>23</td> <td>35</td> <td>59</td> </tr> <tr> <td>2020-11-04</td> <td>46</td> <td>16</td> <td>53</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>36</td> <td>19</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>48</td> <td>58</td> </tr> <tr> <td>2020-11-07</td> <td>21</td> <td>67</td> <td>50</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>33</td> <td>39</td> </tr> <tr> <td>2020-11-02</td> <td>33</td> <td>16</td> <td>21</td> </tr> <tr> <td>2020-11-03</td> <td>23</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>22</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>51</td> <td>37</td> </tr> <tr> <td>2020-11-05</td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>38</td> </tr> <tr> <td>2020-11-06</td> <td>63</td> <td>57</td> <td>65</td> </tr> <tr> <td>2020-11-07</td> <td>53</td> <td>15</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.2.31
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>15</td> <td>16</td> <td>52</td> </tr> <tr> <td>2020-11-02</td> <td>70</td> <td>27</td> <td>21</td> </tr> <tr> <td>2020-11-03</td> <td>22</td> <td>70</td> <td>23</td> </tr> <tr> <td>2020-11-04</td> <td>31</td> <td>29</td> <td>21</td> </tr> <tr> <td>2020-11-05</td> <td>65</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>28</td> <td>22</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>29</td> <td>66</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>19</td> <td>60</td> </tr> <tr> <td>2020-11-02</td> <td>22</td> <td>62</td> <td>40</td> </tr> <tr> <td>2020-11-03</td> <td>42</td> <td>15</td> <td>63</td> </tr> <tr> <td>2020-11-04</td> <td>49</td> <td>15</td> <td>67</td> </tr> <tr> <td>2020-11-05</td> <td>44</td> <td>60</td> <td>62</td> </tr> <tr> <td>2020-11-06</td> <td>51</td> <td>54</td> <td>58</td> </tr> <tr> <td>2020-11-07</td> <td>37</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>38</td> </tr> </tbody> </table>
Output for 7.2.30
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>57</td> <td>30</td> <td>53</td> </tr> <tr> <td>2020-11-02</td> <td>67</td> <td>57</td> <td>66</td> </tr> <tr> <td>2020-11-03</td> <td>68</td> <td>43</td> <td>35</td> </tr> <tr> <td>2020-11-04</td> <td>29</td> <td>58</td> <td>37</td> </tr> <tr> <td>2020-11-05</td> <td>25</td> <td>20</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>59</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>21</td> <td>39</td> <td>41</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>28</td> <td>45</td> </tr> <tr> <td>2020-11-03</td> <td>22</td> <td>23</td> <td>66</td> </tr> <tr> <td>2020-11-04</td> <td>15</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>35</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>62</td> <td>26</td> </tr> <tr> <td>2020-11-06</td> <td>39</td> <td>16</td> <td>51</td> </tr> <tr> <td>2020-11-07</td> <td>68</td> <td>20</td> <td>41</td> </tr> </tbody> </table>
Output for 7.2.29
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>25</td> <td>51</td> </tr> <tr> <td>2020-11-02</td> <td>18</td> <td>67</td> <td>54</td> </tr> <tr> <td>2020-11-03</td> <td>31</td> <td>15</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>48</td> </tr> <tr> <td>2020-11-05</td> <td>58</td> <td>39</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>23</td> <td>36</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>59</td> <td>45</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>17</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> </tr> <tr> <td>2020-11-02</td> <td>67</td> <td>41</td> <td>31</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>26</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>53</td> <td>63</td> <td>57</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>42</td> <td>25</td> </tr> <tr> <td>2020-11-06</td> <td>24</td> <td>65</td> <td>30</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>67</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.2.28
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>48</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>29</td> </tr> <tr> <td>2020-11-02</td> <td>39</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>28</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>37</td> <td>59</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>65</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>54</td> <td>59</td> <td>38</td> </tr> <tr> <td>2020-11-07</td> <td>33</td> <td>27</td> <td>54</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>64</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>40</td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>43</td> <td>37</td> <td>50</td> </tr> <tr> <td>2020-11-05</td> <td>55</td> <td>39</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>59</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>41</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>70</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.2.27
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>61</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>61</td> <td>48</td> </tr> <tr> <td>2020-11-03</td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> </tr> <tr> <td>2020-11-05</td> <td>49</td> <td>56</td> <td>35</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> <td>36</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>59</td> <td>19</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>28</td> <td>32</td> <td>52</td> </tr> <tr> <td>2020-11-02</td> <td>57</td> <td>61</td> <td>21</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>49</td> <td>38</td> <td>69</td> </tr> <tr> <td>2020-11-05</td> <td>32</td> <td>45</td> <td>60</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>21</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.2.26
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>62</td> <td>47</td> </tr> <tr> <td>2020-11-02</td> <td>36</td> <td>69</td> <td>29</td> </tr> <tr> <td>2020-11-03</td> <td>30</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>37</td> </tr> <tr> <td>2020-11-04</td> <td>23</td> <td>64</td> <td>38</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>43</td> <td>22</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>63</td> <td>28</td> </tr> <tr> <td>2020-11-07</td> <td>15</td> <td>55</td> <td>37</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>45</td> <td>25</td> <td>20</td> </tr> <tr> <td>2020-11-02</td> <td>17</td> <td>57</td> <td>37</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>45</td> </tr> <tr> <td>2020-11-04</td> <td>65</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>58</td> <td>32</td> <td>42</td> </tr> <tr> <td>2020-11-06</td> <td>68</td> <td>45</td> <td>70</td> </tr> <tr> <td>2020-11-07</td> <td>48</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>22</td> </tr> </tbody> </table>
Output for 7.2.25
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>37</td> <td>35</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>63</td> <td>40</td> <td>37</td> </tr> <tr> <td>2020-11-03</td> <td>57</td> <td>32</td> <td>52</td> </tr> <tr> <td>2020-11-04</td> <td>38</td> <td>28</td> <td>44</td> </tr> <tr> <td>2020-11-05</td> <td>39</td> <td>63</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>44</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> </tr> <tr> <td>2020-11-07</td> <td>51</td> <td>36</td> <td>48</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>66</td> </tr> <tr> <td>2020-11-02</td> <td>19</td> <td>57</td> <td>35</td> </tr> <tr> <td>2020-11-03</td> <td>66</td> <td>36</td> <td>25</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>48</td> </tr> <tr> <td>2020-11-05</td> <td>22</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>47</td> </tr> <tr> <td>2020-11-06</td> <td>62</td> <td>56</td> <td>68</td> </tr> <tr> <td>2020-11-07</td> <td>29</td> <td>51</td> <td>42</td> </tr> </tbody> </table>
Output for 7.2.24
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>24</td> <td>33</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>48</td> <td>67</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>39</td> <td>29</td> <td>60</td> </tr> <tr> <td>2020-11-04</td> <td>43</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>70</td> </tr> <tr> <td>2020-11-05</td> <td>38</td> <td>55</td> <td>62</td> </tr> <tr> <td>2020-11-06</td> <td>32</td> <td>26</td> <td>70</td> </tr> <tr> <td>2020-11-07</td> <td>23</td> <td>40</td> <td>62</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>24</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>49</td> </tr> <tr> <td>2020-11-02</td> <td>40</td> <td>30</td> <td>25</td> </tr> <tr> <td>2020-11-03</td> <td>17</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> </tr> <tr> <td>2020-11-05</td> <td>16</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>68</td> </tr> <tr> <td>2020-11-06</td> <td>46</td> <td>58</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>45</td> <td>36</td> <td>16</td> </tr> </tbody> </table>
Output for 7.2.23
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>24</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> </tr> <tr> <td>2020-11-02</td> <td>49</td> <td>49</td> <td>66</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>57</td> </tr> <tr> <td>2020-11-04</td> <td>43</td> <td>37</td> <td>43</td> </tr> <tr> <td>2020-11-05</td> <td>15</td> <td>45</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>27</td> <td>25</td> </tr> <tr> <td>2020-11-07</td> <td>45</td> <td>39</td> <td>16</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>51</td> <td>69</td> </tr> <tr> <td>2020-11-02</td> <td>66</td> <td>41</td> <td>34</td> </tr> <tr> <td>2020-11-03</td> <td>59</td> <td>62</td> <td>33</td> </tr> <tr> <td>2020-11-04</td> <td>39</td> <td>36</td> <td>62</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>59</td> </tr> <tr> <td>2020-11-06</td> <td>55</td> <td>27</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>39</td> </tr> </tbody> </table>
Output for 7.2.22
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>36</td> <td>46</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>16</td> <td>23</td> <td>41</td> </tr> <tr> <td>2020-11-03</td> <td>35</td> <td>57</td> <td>54</td> </tr> <tr> <td>2020-11-04</td> <td>21</td> <td>29</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>25</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>29</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>47</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>65</td> <td>19</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>64</td> <td>28</td> <td>24</td> </tr> <tr> <td>2020-11-02</td> <td>58</td> <td>26</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>56</td> <td>61</td> <td>67</td> </tr> <tr> <td>2020-11-04</td> <td>69</td> <td>33</td> <td>50</td> </tr> <tr> <td>2020-11-05</td> <td>34</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>47</td> </tr> <tr> <td>2020-11-06</td> <td>64</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>39</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>67</td> </tr> </tbody> </table>
Output for 7.2.21
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>37</td> <td>45</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>50</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>57</td> </tr> <tr> <td>2020-11-03</td> <td>65</td> <td>54</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>22</td> <td>58</td> <td>16</td> </tr> <tr> <td>2020-11-05</td> <td>23</td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>28</td> </tr> <tr> <td>2020-11-07</td> <td>57</td> <td>58</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>66</td> <td>19</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>52</td> <td>45</td> </tr> <tr> <td>2020-11-03</td> <td>56</td> <td>16</td> <td>27</td> </tr> <tr> <td>2020-11-04</td> <td>68</td> <td>60</td> <td>55</td> </tr> <tr> <td>2020-11-05</td> <td>21</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>36</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>67</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>56</td> </tr> </tbody> </table>
Output for 7.2.20
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>46</td> <td>47</td> <td>40</td> </tr> <tr> <td>2020-11-02</td> <td>18</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> </tr> <tr> <td>2020-11-03</td> <td>43</td> <td>50</td> <td>69</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>63</td> </tr> <tr> <td>2020-11-05</td> <td>52</td> <td>68</td> <td>15</td> </tr> <tr> <td>2020-11-06</td> <td>28</td> <td>37</td> <td>48</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>24</td> <td>36</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>29</td> <td>36</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>67</td> </tr> <tr> <td>2020-11-03</td> <td>66</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>18</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>33</td> </tr> <tr> <td>2020-11-05</td> <td>49</td> <td>48</td> <td>26</td> </tr> <tr> <td>2020-11-06</td> <td>51</td> <td>17</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>26</td> <td>30</td> <td>60</td> </tr> </tbody> </table>
Output for 7.2.19
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>47</td> <td>48</td> </tr> <tr> <td>2020-11-02</td> <td>39</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>59</td> </tr> <tr> <td>2020-11-03</td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>43</td> </tr> <tr> <td>2020-11-05</td> <td>38</td> <td>47</td> <td>36</td> </tr> <tr> <td>2020-11-06</td> <td>21</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>22</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>69</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>25</td> <td>30</td> <td>39</td> </tr> <tr> <td>2020-11-02</td> <td>46</td> <td>39</td> <td>27</td> </tr> <tr> <td>2020-11-03</td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>40</td> </tr> <tr> <td>2020-11-04</td> <td>28</td> <td>54</td> <td>32</td> </tr> <tr> <td>2020-11-05</td> <td>41</td> <td>56</td> <td>49</td> </tr> <tr> <td>2020-11-06</td> <td>65</td> <td>64</td> <td>62</td> </tr> <tr> <td>2020-11-07</td> <td>49</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>70</td> </tr> </tbody> </table>
Output for 7.2.18
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>65</td> <td>36</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>32</td> <td>67</td> <td>52</td> </tr> <tr> <td>2020-11-03</td> <td>37</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>19</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>51</td> </tr> <tr> <td>2020-11-05</td> <td>38</td> <td>32</td> <td>54</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>15</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>24</td> <td>63</td> <td>58</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>41</td> <td>18</td> <td>44</td> </tr> <tr> <td>2020-11-02</td> <td>17</td> <td>18</td> <td>67</td> </tr> <tr> <td>2020-11-03</td> <td>16</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> </tr> <tr> <td>2020-11-04</td> <td>43</td> <td>61</td> <td>36</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>36</td> <td>29</td> </tr> <tr> <td>2020-11-07</td> <td>15</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>40</td> </tr> </tbody> </table>
Output for 7.2.17
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>15</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>61</td> </tr> <tr> <td>2020-11-02</td> <td>39</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> </tr> <tr> <td>2020-11-03</td> <td>17</td> <td>63</td> <td>29</td> </tr> <tr> <td>2020-11-04</td> <td>49</td> <td>67</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>30</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>58</td> <td>35</td> <td>67</td> </tr> <tr> <td>2020-11-07</td> <td>57</td> <td>27</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>63</td> <td>48</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>66</td> <td>57</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>70</td> <td>61</td> <td>39</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>56</td> <td>61</td> </tr> <tr> <td>2020-11-05</td> <td>46</td> <td>59</td> <td>57</td> </tr> <tr> <td>2020-11-06</td> <td>29</td> <td>30</td> <td>22</td> </tr> <tr> <td>2020-11-07</td> <td>53</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>43</td> </tr> </tbody> </table>
Output for 7.2.16
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>26</td> <td>29</td> <td>58</td> </tr> <tr> <td>2020-11-02</td> <td>50</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>55</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>36</td> <td>58</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>21</td> <td>49</td> </tr> <tr> <td>2020-11-05</td> <td>44</td> <td>39</td> <td>17</td> </tr> <tr> <td>2020-11-06</td> <td>69</td> <td>43</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>49</td> <td>57</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>49</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>24</td> </tr> <tr> <td>2020-11-02</td> <td>50</td> <td>63</td> <td>53</td> </tr> <tr> <td>2020-11-03</td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>43</td> <td>40</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>22</td> <td>53</td> <td>35</td> </tr> <tr> <td>2020-11-07</td> <td>57</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>51</td> </tr> </tbody> </table>
Output for 7.2.15
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>65</td> <td>64</td> </tr> <tr> <td>2020-11-02</td> <td>23</td> <td>27</td> <td>56</td> </tr> <tr> <td>2020-11-03</td> <td>22</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> </tr> <tr> <td>2020-11-04</td> <td>24</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>20</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>66</td> <td>37</td> </tr> <tr> <td>2020-11-06</td> <td>57</td> <td>52</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>33</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>57</td> </tr> <tr> <td>2020-11-02</td> <td>61</td> <td>34</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>46</td> <td>69</td> <td>47</td> </tr> <tr> <td>2020-11-04</td> <td>51</td> <td>27</td> <td>18</td> </tr> <tr> <td>2020-11-05</td> <td>24</td> <td>62</td> <td>37</td> </tr> <tr> <td>2020-11-06</td> <td>42</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>39</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>47</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.2.14
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>32</td> <td>65</td> <td>67</td> </tr> <tr> <td>2020-11-02</td> <td>21</td> <td>68</td> <td>61</td> </tr> <tr> <td>2020-11-03</td> <td>60</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>54</td> </tr> <tr> <td>2020-11-04</td> <td>52</td> <td>51</td> <td>52</td> </tr> <tr> <td>2020-11-05</td> <td>25</td> <td>38</td> <td>60</td> </tr> <tr> <td>2020-11-06</td> <td>20</td> <td>49</td> <td>54</td> </tr> <tr> <td>2020-11-07</td> <td>18</td> <td>52</td> <td>17</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>32</td> <td>59</td> <td>66</td> </tr> <tr> <td>2020-11-02</td> <td>70</td> <td>48</td> <td>41</td> </tr> <tr> <td>2020-11-03</td> <td>47</td> <td>16</td> <td>24</td> </tr> <tr> <td>2020-11-04</td> <td>69</td> <td>20</td> <td>67</td> </tr> <tr> <td>2020-11-05</td> <td>65</td> <td>60</td> <td>60</td> </tr> <tr> <td>2020-11-06</td> <td>19</td> <td>17</td> <td>50</td> </tr> <tr> <td>2020-11-07</td> <td>51</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>58</td> </tr> </tbody> </table>
Output for 7.2.13
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>56</td> <td>28</td> <td>22</td> </tr> <tr> <td>2020-11-02</td> <td>15</td> <td>69</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>43</td> <td>39</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>19</td> <td>66</td> </tr> <tr> <td>2020-11-05</td> <td>29</td> <td>30</td> <td>62</td> </tr> <tr> <td>2020-11-06</td> <td>64</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>35</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>27</td> <td>22</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>57</td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>44</td> <td>28</td> </tr> <tr> <td>2020-11-04</td> <td>65</td> <td>31</td> <td>28</td> </tr> <tr> <td>2020-11-05</td> <td>19</td> <td>37</td> <td>32</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>25</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>55</td> <td>43</td> </tr> </tbody> </table>
Output for 7.2.12
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>46</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>45</td> <td>55</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>60</td> <td>48</td> </tr> <tr> <td>2020-11-04</td> <td>33</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>39</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> <td>36</td> </tr> <tr> <td>2020-11-06</td> <td>49</td> <td>54</td> <td>57</td> </tr> <tr> <td>2020-11-07</td> <td>43</td> <td>67</td> <td>60</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>29</td> <td>67</td> <td>63</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>56</td> </tr> <tr> <td>2020-11-03</td> <td>63</td> <td>61</td> <td>56</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>65</td> </tr> <tr> <td>2020-11-05</td> <td>68</td> <td>40</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>58</td> <td>17</td> <td>69</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.2.11
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>28</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>20</td> </tr> <tr> <td>2020-11-02</td> <td>58</td> <td>18</td> <td>16</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>62</td> <td>37</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>17</td> <td>35</td> </tr> <tr> <td>2020-11-05</td> <td>31</td> <td>47</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>35</td> <td>19</td> <td>48</td> </tr> <tr> <td>2020-11-07</td> <td>27</td> <td>22</td> <td>61</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>25</td> <td>49</td> <td>20</td> </tr> <tr> <td>2020-11-02</td> <td>55</td> <td>23</td> <td>52</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>28</td> <td>68</td> </tr> <tr> <td>2020-11-04</td> <td>37</td> <td>37</td> <td>44</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> <td>68</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>23</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>25</td> <td>50</td> <td>49</td> </tr> </tbody> </table>
Output for 7.2.10
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>67</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>44</td> </tr> <tr> <td>2020-11-02</td> <td>42</td> <td>44</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>68</td> <td>34</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>48</td> <td>19</td> <td>45</td> </tr> <tr> <td>2020-11-05</td> <td>50</td> <td>68</td> <td>47</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> <td>70</td> </tr> <tr> <td>2020-11-07</td> <td>50</td> <td>68</td> <td>54</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>20</td> <td>69</td> <td>36</td> </tr> <tr> <td>2020-11-02</td> <td>30</td> <td>16</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>69</td> <td>38</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>66</td> </tr> <tr> <td>2020-11-05</td> <td>35</td> <td>61</td> <td>33</td> </tr> <tr> <td>2020-11-06</td> <td>40</td> <td>42</td> <td>25</td> </tr> <tr> <td>2020-11-07</td> <td>30</td> <td>19</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.2.9
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>38</td> <td>40</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>19</td> <td>21</td> <td>28</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>41</td> <td>65</td> </tr> <tr> <td>2020-11-04</td> <td>42</td> <td>30</td> <td>70</td> </tr> <tr> <td>2020-11-05</td> <td>45</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>24</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>32</td> <td>62</td> </tr> <tr> <td>2020-11-07</td> <td>18</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>50</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>45</td> <td>37</td> <td>60</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>29</td> <td>48</td> </tr> <tr> <td>2020-11-03</td> <td>28</td> <td>23</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>48</td> <td>38</td> <td>16</td> </tr> <tr> <td>2020-11-05</td> <td>36</td> <td>21</td> <td>17</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>25</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>48</td> <td>37</td> <td>16</td> </tr> </tbody> </table>
Output for 7.2.8
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>53</td> <td>35</td> </tr> <tr> <td>2020-11-02</td> <td>64</td> <td>64</td> <td>52</td> </tr> <tr> <td>2020-11-03</td> <td>56</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td>43</td> <td>65</td> <td>27</td> </tr> <tr> <td>2020-11-05</td> <td>54</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>63</td> </tr> <tr> <td>2020-11-06</td> <td>19</td> <td>25</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>52</td> <td>34</td> <td>22</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>57</td> <td>61</td> <td>69</td> </tr> <tr> <td>2020-11-02</td> <td>26</td> <td>20</td> <td>22</td> </tr> <tr> <td>2020-11-03</td> <td>55</td> <td>41</td> <td>70</td> </tr> <tr> <td>2020-11-04</td> <td>52</td> <td>31</td> <td>24</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>50</td> <td>41</td> </tr> <tr> <td>2020-11-06</td> <td>20</td> <td>38</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>29</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.2.7
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>52</td> <td>37</td> <td>65</td> </tr> <tr> <td>2020-11-02</td> <td>25</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>28</td> <td>48</td> <td>37</td> </tr> <tr> <td>2020-11-04</td> <td>27</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>62</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> <td>23</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>30</td> <td>26</td> </tr> <tr> <td>2020-11-07</td> <td>27</td> <td>36</td> <td>54</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>36</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>46</td> <td>44</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> <td>54</td> </tr> <tr> <td>2020-11-05</td> <td>43</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>39</td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>62</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>19</td> <td>51</td> <td>37</td> </tr> </tbody> </table>
Output for 7.2.6
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>23</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>25</td> </tr> <tr> <td>2020-11-02</td> <td>49</td> <td>40</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>32</td> <td>46</td> <td>23</td> </tr> <tr> <td>2020-11-04</td> <td>15</td> <td>53</td> <td>69</td> </tr> <tr> <td>2020-11-05</td> <td>58</td> <td>63</td> <td>43</td> </tr> <tr> <td>2020-11-06</td> <td>59</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>49</td> <td>19</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>24</td> <td>62</td> <td>18</td> </tr> <tr> <td>2020-11-02</td> <td>57</td> <td>36</td> <td>61</td> </tr> <tr> <td>2020-11-03</td> <td>45</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>40</td> </tr> <tr> <td>2020-11-04</td> <td>18</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>49</td> <td>56</td> <td>37</td> </tr> <tr> <td>2020-11-06</td> <td>19</td> <td>28</td> <td>36</td> </tr> <tr> <td>2020-11-07</td> <td>70</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>70</td> </tr> </tbody> </table>
Output for 7.2.5
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>23</td> <td>59</td> <td>49</td> </tr> <tr> <td>2020-11-02</td> <td>24</td> <td>25</td> <td>69</td> </tr> <tr> <td>2020-11-03</td> <td>35</td> <td>48</td> <td>35</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>58</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>26</td> <td>18</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>65</td> <td>45</td> <td>65</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>58</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>52</td> </tr> <tr> <td>2020-11-02</td> <td>50</td> <td>37</td> <td>58</td> </tr> <tr> <td>2020-11-03</td> <td>49</td> <td>63</td> <td>20</td> </tr> <tr> <td>2020-11-04</td> <td>57</td> <td>19</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>29</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>63</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>56</td> <td>21</td> </tr> </tbody> </table>
Output for 7.2.4
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>53</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>64</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>38</td> </tr> <tr> <td>2020-11-03</td> <td>65</td> <td>23</td> <td>60</td> </tr> <tr> <td>2020-11-04</td> <td>27</td> <td>52</td> <td>65</td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>68</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>39</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>62</td> </tr> <tr> <td>2020-11-07</td> <td>59</td> <td>18</td> <td>25</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>39</td> <td>32</td> </tr> <tr> <td>2020-11-02</td> <td>45</td> <td>35</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>30</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>60</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>33</td> <td>35</td> </tr> <tr> <td>2020-11-06</td> <td>31</td> <td>41</td> <td>57</td> </tr> <tr> <td>2020-11-07</td> <td>26</td> <td>30</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>
Output for 7.2.3
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>18</td> <td>70</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>37</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>21</td> <td>15</td> <td>26</td> </tr> <tr> <td>2020-11-04</td> <td>62</td> <td>27</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>59</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>69</td> </tr> <tr> <td>2020-11-06</td> <td>18</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>43</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>42</td> <td>65</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>35</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>62</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>29</td> </tr> <tr> <td>2020-11-03</td> <td>26</td> <td>69</td> <td>53</td> </tr> <tr> <td>2020-11-04</td> <td>54</td> <td>49</td> <td>69</td> </tr> <tr> <td>2020-11-05</td> <td>56</td> <td>50</td> <td>26</td> </tr> <tr> <td>2020-11-06</td> <td>66</td> <td>19</td> <td>40</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>49</td> <td>45</td> </tr> </tbody> </table>
Output for 7.2.2
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>16</td> <td>42</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-02</td> <td>30</td> <td>44</td> <td>27</td> </tr> <tr> <td>2020-11-03</td> <td>52</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>54</td> </tr> <tr> <td>2020-11-04</td> <td>15</td> <td>59</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>33</td> <td>66</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>69</td> <td>55</td> <td>67</td> </tr> <tr> <td>2020-11-07</td> <td>38</td> <td>64</td> <td>44</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>20</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>42</td> <td>37</td> </tr> <tr> <td>2020-11-03</td> <td>26</td> <td>65</td> <td>34</td> </tr> <tr> <td>2020-11-04</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>64</td> <td>29</td> </tr> <tr> <td>2020-11-05</td> <td>22</td> <td>60</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>70</td> </tr> <tr> <td>2020-11-07</td> <td>18</td> <td>57</td> <td>66</td> </tr> </tbody> </table>
Output for 7.2.1
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>60</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>25</td> </tr> <tr> <td>2020-11-02</td> <td>52</td> <td>43</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-03</td> <td>36</td> <td>19</td> <td>69</td> </tr> <tr> <td>2020-11-04</td> <td>20</td> <td>57</td> <td>28</td> </tr> <tr> <td>2020-11-05</td> <td>60</td> <td>45</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td>35</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-07</td> <td>37</td> <td>26</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>57</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>39</td> </tr> <tr> <td>2020-11-02</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>35</td> </tr> <tr> <td>2020-11-03</td> <td>41</td> <td>34</td> <td>16</td> </tr> <tr> <td>2020-11-04</td> <td>63</td> <td>44</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>41</td> <td>40</td> <td>49</td> </tr> <tr> <td>2020-11-06</td> <td>66</td> <td>60</td> <td>69</td> </tr> <tr> <td>2020-11-07</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>34</td> <td>69</td> </tr> </tbody> </table>
Output for 7.2.0
<table> <thead> <tr> <th>Date</th> <th>city 1</th> <th>city 2</th> <th>city 3</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td>64</td> <td>18</td> <td>17</td> </tr> <tr> <td>2020-11-02</td> <td>40</td> <td>67</td> <td>47</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>37</td> </tr> <tr> <td>2020-11-04</td> <td>48</td> <td>28</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>17</td> <td>69</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-06</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>64</td> <td>38</td> </tr> <tr> <td>2020-11-07</td> <td>48</td> <td>53</td> <td>37</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Date</th> <th>city 4</th> <th>city 5</th> <th>city 6</th> </tr> </thead> <tbody> <tr> <td>2020-11-01</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>65</td> <td>26</td> </tr> <tr> <td>2020-11-02</td> <td>68</td> <td>63</td> <td>17</td> </tr> <tr> <td>2020-11-03</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> <td>16</td> <td>65</td> </tr> <tr> <td>2020-11-04</td> <td>21</td> <td>57</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> <tr> <td>2020-11-05</td> <td>19</td> <td>47</td> <td>50</td> </tr> <tr> <td>2020-11-06</td> <td>56</td> <td>46</td> <td>29</td> </tr> <tr> <td>2020-11-07</td> <td>21</td> <td>58</td> <td><!-- Empty cell if no sales recorded for this location on this day. --></td> </tr> </tbody> </table>

preferences:
107.6 ms | 409 KiB | 78 Q