Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
hi,
any help.
below is data
id | name | state | statedate |
1 | PS | intesting | 15/06/2018 |
1 | PS | active | 10/06/2018 |
and i need to represent
id | name | state | statedate | ActiveDate |
1 | PS | intesting | 15/06/2018 | 10/06/2020
|
am trying to pivot one column which is when any data hold state as "active"i want "statedate" in same row.
or as below.
id | name | intestingdate | ActiveDate |
1 | PS | 15/06/2018 | 10/06/2020
|
any solution.
thanks
Solved! Go to Solution.
@bideveloper555 , Try to measure like this
statedate = maxx(filter(Table[state]="state"),Table[statedate])
ActiveDate= maxx(filter(Table[state]="active"),Table[statedate])
@bideveloper555 , Try to measure like this
statedate = maxx(filter(Table[state]="state"),Table[statedate])
ActiveDate= maxx(filter(Table[state]="active"),Table[statedate])
thank you amit.🍻
have a great day.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.