Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Krish4Work
Frequent Visitor

How to get values from a row and transpose it to columns.

Hi.. I am pretty new to Power BI

I have two tables, one For the transaction Document and another for the Tender details of the transaction.

In the tender tables, for every tender it will create a row with the tender type (eg: Cash, Master Card, Visa etc) and the tender amount.

Even if a single transaction has multiple tenders (Split tenders) like cash and one of the cards, it has multiple record of rows for each tender type.

The tender table contains Transaction SID which is the reference to the Transaction Document.

 

My requirement is to Create coloumns according to the multiple tender type(Cash, mastercard, visa) which will contain the tender amount as values and group it according to the transaction SID.

 

I tried adding a custom coloumn with

Cash = LOOKUPVALUE(TENDER[AMOUNT],TENDER[DOC_SID],DOCUMENT[SID],TENDER[TENDER_TYPE],0)

but it gives an error

A table of multiple values was supplied where a single value was expected.

Please help me out in this.

Thanks in advance.

1 ACCEPTED SOLUTION

Hi @Krish4Work 
Please refer to attached sample file. Hope this is what you're looking for

1.png

Cash = 
SUMX (
    FILTER ( 
        RELATEDTABLE ( TENDER ),
        TENDER[TENDER_TYPE] = 0
    ),
    TENDER[AMOUNT]
)

View solution in original post

4 REPLIES 4
tamerj1
Super User
Super User

Hi @Krish4Work 
Do you have a relationship between the two tables? Can you please provide sample data from both tables along with the expected result?

Hi @tamerj1

Thanks for replying!

Please find the .pbix file in this attached wetransfer link.

 https://we.tl/t-eZ5i7pp6ty 

Both the tables have relatioship ie Tender[Doc_sid] = Document[sid].

Hi @Krish4Work 
Please refer to attached sample file. Hope this is what you're looking for

1.png

Cash = 
SUMX (
    FILTER ( 
        RELATEDTABLE ( TENDER ),
        TENDER[TENDER_TYPE] = 0
    ),
    TENDER[AMOUNT]
)

Thankyou @tamerj1  you've been a great help.

Your solution is working for me.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.

Top Solution Authors