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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
CSpina
Helper III
Helper III

Creating a list with cicle and years

Hi, people!

 

I need to create a list with cicle and year.

 

1-2010
2-2015
3-2020

I am using

 

let
ano05 = 2010,
AnoAtual = 2021,
troca04_ciclo = 60,
Fonte = List.Generate(()=>ano05, each _ <= AnoAtual, each _ + Number.RoundUp(troca04_ciclo/12))
in
Fonte

 

But I don´t know how to do it.

 

Any ideias?

 

 

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

If you want a list {"1-2010", "2-2015", "3-2020"}, then you could try this:

let
    ano05 = 2010,
    AnoAtual = 2021,
    troca04_ciclo = 60,
    step = Number.RoundUp(troca04_ciclo / 12),
    N = Number.RoundUp((AnoAtual - ano05) / step),
    Fonte = List.Transform({1..N}, each {_, ano05 + step * (_ - 1)}),
    ToText = List.Transform(Fonte, each Number.ToText(_{0}) & "-" & Number.ToText(_{1}))
in
    ToText

View solution in original post

1 REPLY 1
AlexisOlson
Super User
Super User

If you want a list {"1-2010", "2-2015", "3-2020"}, then you could try this:

let
    ano05 = 2010,
    AnoAtual = 2021,
    troca04_ciclo = 60,
    step = Number.RoundUp(troca04_ciclo / 12),
    N = Number.RoundUp((AnoAtual - ano05) / step),
    Fonte = List.Transform({1..N}, each {_, ano05 + step * (_ - 1)}),
    ToText = List.Transform(Fonte, each Number.ToText(_{0}) & "-" & Number.ToText(_{1}))
in
    ToText

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors