Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi Team,
Am trying to build a report that contain a table with several columns(include meassure also).
I have some slicers including date also.
The table is like above attached one.
I have a date slicer in canvas,so if select 2022 it should show 2022 values in no of devices column and 2021 in last year no of devices column.
if select 2023 it should show 2023 values in no of devices column and 2022 in last year no of devices column.
can any help me to write the dax for last year column
Regards,
Nadeem
Solved! Go to Solution.
@Anonymous
pls try this
Measure 2 =
VAR _year=max('Table'[Year])-1
return CALCULATE(sum('Table'[Number Od Devices]),FILTER(ALLEXCEPT('Table','Table'[Account Name ]),'Table'[Year]=_year))
pls see the attachment below
Proud to be a Super User!
@Anonymous
You mean something like this?
Number of Devises = SUM ( Data[Number Od Devices] )Number of Devices Last Year =
CALCULATE (
[Number of Devises],
Data[Year] = MAX ( Data[Year] ) - 1
)
@Anonymous
You mean something like this?
Number of Devises = SUM ( Data[Number Od Devices] )Number of Devices Last Year =
CALCULATE (
[Number of Devises],
Data[Year] = MAX ( Data[Year] ) - 1
)
Hi @Anonymous
can you please provide sample data?
Hi @tamerj1
Here is the sample data
| Account Name | Number Od Devices | Month | Year |
| AA | 175 | 12 | 2021 |
| BB | 169 | 11 | 2021 |
| CC | 159 | 1 | 2022 |
| DD | 256 | 2 | 2022 |
| EE | 258 | 3 | 2022 |
| FF | 123 | 4 | 2022 |
| AA | 236 | 1 | 2022 |
| BB | 36 | 1 | 2022 |
| AA | 56 | 2 | 2022 |
| BB | 360 | 2 | 2022 |
@Anonymous
pls try this
Measure 2 =
VAR _year=max('Table'[Year])-1
return CALCULATE(sum('Table'[Number Od Devices]),FILTER(ALLEXCEPT('Table','Table'[Account Name ]),'Table'[Year]=_year))
pls see the attachment below
Proud to be a Super User!
you are welcome
Proud to be a Super User!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 38 | |
| 33 | |
| 19 | |
| 16 |
| User | Count |
|---|---|
| 69 | |
| 67 | |
| 41 | |
| 32 | |
| 24 |