Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
121 | |
79 | |
47 | |
45 | |
36 |
User | Count |
---|---|
179 | |
89 | |
69 | |
47 | |
47 |