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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Prabhu_MDU
Advocate I
Advocate I

how to repeat the rows in a Datatable based on a column value

Hi, 

 

as per the image given below.. 

I want to repeat the row based on the StartDate and EndDate columns. 

 

In the Image:

the first output tells you the exact out put from the Databse tables.. 

the second output tells you the calculated out put from the Database tables..

 

what am I doing here ?.. 

well,

1) I am just calculating the calendar month which lies from the start date and ends before the Enddate

2) All the derived date values are End Of Month values.. 

3) Except the EOMDate colums, all the rest of the columns will remain the same.. 

 

what is expected !!

I want to know how can I do the same in power bi using DAX Queries.

 

Any help is much appreciated.

 

Thanks & Regards, 

Prabhu

 

 

PowerBi_Doubt_OR.jpg

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@Prabhu_MDU,

 

You may refer to steps below:

 

Firstly, click Modeling-> New Table, repeat current rows using DAX below:

Table = 
UNION (
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1
)

 Secondly, create a calendar table which contains a series of date which is end of month:

Calendar = 
UNION (
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 0 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 1 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 2 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 3 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 4 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 5 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 6 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 7 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 8 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 9 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 10 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 11 ) )
)

Finally, generate the result table using DAX below:

Result = 
DISTINCT (
    SELECTCOLUMNS (
        CROSSJOIN ( 'Table', 'Calendar' ),
        "CLIENT_POLICY_NUMBER", 'Table'[CLIENT_POLICY_NUMBER],
        "StartDate", 'Table'[StartDate],
        "EndDate", 'Table'[EndDate],
        "PolicyYear", 'Table'[PolicyYear],
        "InforceDate", 'Table'[InforceDate],
        "CancelDate", 'Table'[CancelDate],
        "INSURED", 'Table'[INSURED],
        "DOM_STA", 'Table'[DOM_STA],
        "PROGRAM", 'Table'[PROGRAM],
        "PRODUCT", 'Table'[PRODUCT],
        "Company", 'Table'[COMPANY],
        "MGA_NAM", 'Table'[MGA_NAM],
        "Total_Poli", 'Table'[Total_Poli],
        "ProfitCen", 'Table'[ProfitCen],
        "EOMDate", 'Calendar'[EOMDate]
    )
)

Capture.PNG  

 

Community Support Team _ Jimmy Tao

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

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

@Prabhu_MDU,

 

You may refer to steps below:

 

Firstly, click Modeling-> New Table, repeat current rows using DAX below:

Table = 
UNION (
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1,
    Table1
)

 Secondly, create a calendar table which contains a series of date which is end of month:

Calendar = 
UNION (
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 0 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 1 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 2 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 3 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 4 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 5 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 6 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 7 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 8 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 9 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 10 ) ),
    ROW ( "EOMDate", EOMONTH ( "02/28/2018", 11 ) )
)

Finally, generate the result table using DAX below:

Result = 
DISTINCT (
    SELECTCOLUMNS (
        CROSSJOIN ( 'Table', 'Calendar' ),
        "CLIENT_POLICY_NUMBER", 'Table'[CLIENT_POLICY_NUMBER],
        "StartDate", 'Table'[StartDate],
        "EndDate", 'Table'[EndDate],
        "PolicyYear", 'Table'[PolicyYear],
        "InforceDate", 'Table'[InforceDate],
        "CancelDate", 'Table'[CancelDate],
        "INSURED", 'Table'[INSURED],
        "DOM_STA", 'Table'[DOM_STA],
        "PROGRAM", 'Table'[PROGRAM],
        "PRODUCT", 'Table'[PRODUCT],
        "Company", 'Table'[COMPANY],
        "MGA_NAM", 'Table'[MGA_NAM],
        "Total_Poli", 'Table'[Total_Poli],
        "ProfitCen", 'Table'[ProfitCen],
        "EOMDate", 'Calendar'[EOMDate]
    )
)

Capture.PNG  

 

Community Support Team _ Jimmy Tao

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

Helpful resources

Announcements
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!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.