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
Hi Community,
I have a column called amount and it is integer and i have another column called types, I would like the output as below.
Input Table:
Type Amount
A 100
B 200
C 50
D 30
Output:
Type Amount
A 100
B 200
C 50%
D 30
When the Type is C the amount should show as 50% and for other it should show as actual amount value.
Please help.
Thanks,
Paruchuri
Solved! Go to Solution.
Hi @Anonymous ,
You could create a calculated column to get the result.
Column =
IF (
'Table'[Type] = "C",
'Table'[Amount] & "%",
FORMAT ( 'Table'[Amount], "" )
)
Hi @Anonymous ,
You could create a calculated column to get the result.
Column =
IF (
'Table'[Type] = "C",
'Table'[Amount] & "%",
FORMAT ( 'Table'[Amount], "" )
)
Hi @Anonymous ,
As you can not have two different types in the same column, do you want C to show as .50, or do you want the whole column as text?
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
Proud to be a Super User!
HI Nathaniel,
Thanks for the reply. I want show % next to the amount for type C otherwise just amount.
Thanks,
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
108 | |
73 | |
53 | |
52 | |
44 |
User | Count |
---|---|
161 | |
110 | |
69 | |
58 | |
50 |