Forum Discussion

janaselva's avatar
janaselva
Regular Visitor
4 years ago
Solved

Combine data into a single field

Hi All,  I have the following table.  TABLE A Contract No.   Invoice No.   Invoice amount   Invoice_Date 10001               2341           $100                     01.05.2022 10002             ...
  • ManguilibeKAO's avatar
    4 years ago

    Hi janaselva,

    Here's a solution:

     

    Create a new table Table B, with rhe following formula:

     

    Table B =
    Summarize('Table A',
    'Table A'[Contract No],
    "Consolidated_Invoice_Amount",SUM('Table A'[Invoice amount]),
    "Invoice_number",CONCATENATEX('Table A','Table A'[Invoice no],","),
    "Invoice_date",CONCATENATEX('Table A','Table A'[Invoice_Date],",")
    )

     

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

     

    Manguilibe KAO