Forum Discussion
Get only the payment amount from the same table
- Anonymous4 years ago
Hi newkingdom
You can create a calculated column in this case:
Payment Amount = IF(
TableName[Type] = "Payment",TableName[Amount], 0)
I just tested this on my data and it worked. If the data-type of Amount is Number use 0, otherwise use "0"
If you think my solution worked , please 'Accept' it as a solution and give it a like.
Thanks,
Mahesh
Hi newkingdom
You can create a calculated column in this case:
Payment Amount = IF(
TableName[Type] = "Payment",
TableName[Amount], 0)
I just tested this on my data and it worked. If the data-type of Amount is Number use 0, otherwise use "0"
If you think my solution worked , please 'Accept' it as a solution and give it a like.
Thanks,
Mahesh