Forum Discussion
Month and Days
- Anonymous5 years ago
Hi sklement ,
According to my understand, you want to display total sales and temperature of each day , right?
1. Date as X-axis :
You could use Drill-down or as amitchandak said, set X-axis as Categorical like this:
2.To show sales : You could use the following formula to calculate the sum and then drag it to Tooltip/Size pane like this:
Total Sales = CALCULATE ( SUM ( Sale[Sales] ), FILTER ( 'Sale', 'Sale'[Date] = MAX ( 'Table'[Date] ) ) )Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.Best Regards,
Eyelyn Qin
Hi sklement ,
According to my understand, you want to display total sales and temperature of each day , right?
1. Date as X-axis :
You could use Drill-down or as amitchandak said, set X-axis as Categorical like this:
2.To show sales : You could use the following formula to calculate the sum and then drag it to Tooltip/Size pane like this:
Total Sales =
CALCULATE (
SUM ( Sale[Sales] ),
FILTER ( 'Sale', 'Sale'[Date] = MAX ( 'Table'[Date] ) )
)
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
- sklement5 years agoFrequent Visitor
Many thanks Evelyn! That helped a lot.