• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Xlookup returing first value

nosense

New Member
Hi

when i am using xlookup only the first amount getting to the rest of the IDs, but the user worked on multiple languages, how to get the amount for each language without repeatin same amount. kindly help
 

Attachments

Many things are possible but I don't know what you are looking for. For example
Code:
= GROUPBY(IDs, HSTACK(languages, earnings), HSTACK(ARRAYTOTEXT, SUM),3,0)
will generate
1747593746332.png
 
how to get the amount for each language without repeating same amount.
Code:
= GROUPBY(languages, HSTACK(IDs, earnings), HSTACK(ARRAYTOTEXT, SUM),0,0)

1747739411532.png
 

Attachments

Back
Top