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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
PaulKeijzers
Frequent Visitor

Iterating trough items with steps of 500 items

Hi,

 

i am in a situation where i need to create a loop 

for example i know i have 2579 items now i want to have a table autogenerated because the number can also be 3200 or more.

in the table there should be 0,500,1000,1500,2000 2500 as when i devide 2579 with 500 it is 5 times. in case of 3200 i need to iterate 6 times 500.

 

Now i need this in a table as i need the values somewhere else.

 

does somebody have a solution for this.

 

thanks in advance.

1 ACCEPTED SOLUTION
Eric_Zhang
Employee
Employee

@PaulKeijzers

 

You can reference a calculated table as below.

 

Number Table = 
FILTER (
    SELECTCOLUMNS (
        FILTER (
            ADDCOLUMNS (
                CALENDAR ( "1970-01-01", "2020-12-31" ),
                "daysSince 1970-01-01", DATEDIFF ( "1970-01-01", [Date], DAY )
            ),
            MOD ( [daysSince 1970-01-01], 500 ) = 0
        ),
        "num", [daysSince 1970-01-01]
    ),
    //[num] <= COUNTROWS ( YourTable )
    [num] <=2579
)

Capture.PNG

 

View solution in original post

4 REPLIES 4
Eric_Zhang
Employee
Employee

@PaulKeijzers

 

You can reference a calculated table as below.

 

Number Table = 
FILTER (
    SELECTCOLUMNS (
        FILTER (
            ADDCOLUMNS (
                CALENDAR ( "1970-01-01", "2020-12-31" ),
                "daysSince 1970-01-01", DATEDIFF ( "1970-01-01", [Date], DAY )
            ),
            MOD ( [daysSince 1970-01-01], 500 ) = 0
        ),
        "num", [daysSince 1970-01-01]
    ),
    //[num] <= COUNTROWS ( YourTable )
    [num] <=2579
)

Capture.PNG

 

Somehow youre code did not work yet maybe i am missing something.

i have a clean table so no columns etc.

 

@PaulKeijzers

What do you mean "doesn't work"? Any error?

Check the calculated table in the attached pbix.

 

 

Hi Eric,

 

i need it in the query editor this is done in the front and somehow it does not work as a query in the advanced editor.

 

thanks in advance,

 

Paul

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.