Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
How to calculate the difference between buy and sell of a salesvalues coulmn based on country by converting to rows to column of buy_sell column .
Input:
Country | category | buy_sell | salesvalues |
India | A | buy | Null |
India | A | sell | -75,500.00 |
USA | B | buy | -60,095 |
USA | B | sell | 70,901 |
AUS | C | buy | 29,923 |
AUS | C | sell | -3,260,307 |
AUS | D | buy | -60,750.00 |
AUS | D | sell | -1500 |
USA | E | buy | 10 |
USA | E | sell | 20 |
USA | F | buy | -20000 |
USA | F | sell | Null |
Expected Output:
Thanks,
SBC
Solved! Go to Solution.
Hi @SBC
Please refer to attached sample file withthe solution
Value =
VAR NormalValue = SUM ( 'Table'[salesvalues] )
VAR BuyValue = CALCULATE ( SUM ( 'Table'[salesvalues] ), 'Table'[buy_sell] = "buy" )
VAR SellValue = CALCULATE ( SUM ( 'Table'[salesvalues] ), 'Table'[buy_sell] = "sell" )
VAR Difference = ABS ( ABS ( SellValue ) - ABS ( BuyValue ) )
VAR _Sign = DIVIDE ( SellValue + BuyValue, ABS ( SellValue + BuyValue ) )
VAR Result =
IF (
HASONEVALUE ( 'Table'[buy_sell] ),
NormalValue,
Difference * _Sign
)
RETURN
Result
Hi @tamerj1 ,
Can we use table visual instead of Matrix visual , by using matrix visual we are missing data which consits of null values in it.
Output we got by executing your solution
MYL Data is missing.Please provide any alternate solution to resolve this issue,
Thanks,
SBC
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
8 |