March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
My table looks like below:
date | sales |
2017-07 | 1 |
2017-08 | 1 |
2017-08 | 1 |
2017-08 | 1 |
2017-09 | 1 |
2017-09 | 1 |
2017-09 | 1 |
2017-09 | 1 |
I want to achieve like below:
date | sales |
2017-07 | 1 |
2017-08 | 3 |
2017-09 | 4 |
How can I do so? Kinldy help.
Solved! Go to Solution.
@sam_nik12345 , This seems like a month to me not a date. If this in same format then
Just but this in visual and the put a measure = sum(Table[sales])
If you do not have month you have date create a new column month
Month Year = format([Date], "YYYY-MM")
and use this in visual with sales measure
Find the file attached after signature
@sam_nik12345 , This seems like a month to me not a date. If this in same format then
Just but this in visual and the put a measure = sum(Table[sales])
If you do not have month you have date create a new column month
Month Year = format([Date], "YYYY-MM")
and use this in visual with sales measure
Find the file attached after signature
Hi @amitchandak
When I visualize this with other tables, it goes back to original state. Both tables are connected with date table and I get below view. Please help me to write a DAX function to resolve this.
date | sales | po |
2018-07 | 2 | 23 |
2018-08 | 34 | 25 |
2018-08 | 23 | |
2018-08 | 34 | |
2018-09 | 23 | |
2018-10 | 12 | 12 |
My expected view as below:
date | sales | po |
2018-07 | 2 | 23 |
2018-08 | 34 | 82 |
2018-09 | 23 | |
2018-10 | 12 | 12 |
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
93 | |
92 | |
86 | |
77 | |
49 |
User | Count |
---|---|
166 | |
149 | |
99 | |
73 | |
57 |