Forum Discussion

racer25's avatar
racer25
Regular Visitor
1 year ago
Solved

Multiply Data in One Table by a Percentage from Another Table

Hi    I have two table FIS_FEEINCOMESPLIT (Fee Income) c 10,000 rows and CAC_CKUEBTACCIYBTUBG (Ckuebt Acciybtubg c 2,500,000 rows.   Within Fee Income is the Departmental Information so  I can ha...
  • burakkaragoz's avatar
    1 year ago

    Hi racer25 ,

     

    Don’t try to merge those two big tables in Power Query — it’ll freeze Power BI.

    Instead, keep them separate and use a relationship (Many-to-One from Fee Income to Client Accounting). Then create a measure like this:

    Net Allocated = 
    SUMX(
        FIS_FEEINCOMESPLIT,
        RELATED(CAC_CKUEBTACCITYBTUBG[Net]) * FIS_FEEINCOMESPLIT[Percentage]
    )

    This way you multiply Net by the department percentage without heavy joins. Much faster and scalable.

    If my response resolved your query, kindly mark it as the Accepted Solution to assist others. Additionally, I would be grateful for a 'Kudos' if you found my response helpful.

    This response was assisted by AI for translation and formatting purposes.