Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi everyone,
I have to calculate a new column/measure that for each client it will take first from a different column. For instance, how to calculate City_new? Is it possible?
Customer ID | City | City_new |
1 | Warsaw | Warsaw |
1 | Paris | Warsaw |
1 | London | Warsaw |
2 | Moscow | Moscow |
2 | Riga | Moscow |
3 | Vienna | Vienna |
3 | Warsaw | Vienna |
3 | London | Vienna |
3 | Lisbona | Vienna |
Best Regards!
Solved! Go to Solution.
Hey @Anonymous ,
you can add a calculated column and use the following formula:
City_new =
CALCULATE(
MAX( myTable[City] ),
ALLEXCEPT(
myTable,
myTable[CustomerID]
)
)
Be aware that this will just give you the last value from an alphabetical point of view. In general there is no order in the Power BI data. So ID 1 and Warsaw could in other circumstances appear as second row.
If you want to have a specific element as first, you have to add a column with the order of the cities.
Hey @Anonymous ,
you can add a calculated column and use the following formula:
City_new =
CALCULATE(
MAX( myTable[City] ),
ALLEXCEPT(
myTable,
myTable[CustomerID]
)
)
Be aware that this will just give you the last value from an alphabetical point of view. In general there is no order in the Power BI data. So ID 1 and Warsaw could in other circumstances appear as second row.
If you want to have a specific element as first, you have to add a column with the order of the cities.
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.
User | Count |
---|---|
87 | |
81 | |
53 | |
37 | |
35 |