Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
So I'd like the table below:
Day | Value |
1 | 0 |
2 | 0.5 |
3 | 1 |
4 | 1.5 |
5 | 2 |
I can generate two different tables but can't bring them together, I'm guessing this is pretty simple can someone please help?
Generates a table with Value
GENERATESERIES ( 0, 2, 0.5 )
Generates a table with Day
GENERATESERIES ( 1, 5, 1 )
Thanks
Mark
Solved! Go to Solution.
@BlueSky in power query , do the following:
- add a blank query
- click advanced editor
and paste following code
let
#"Source" = Table.FromList({1..5}, Splitter.SplitByNothing(),{"index"},null, ExtraValues.Error),
#"Added Index" = Table.AddIndexColumn(#"Source", "Factor", 0,0.5),
#"Changed Type" = Table.TransformColumnTypes(#"Added Index",{{"index", Int64.Type}})
in
#"Changed Type"
I would 💖 Kudos 🙂 if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@BlueSky You could do it this way, if you didn't want to do it in M:
Respectfully,
Zoe Douglas (DataZoe)
Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/
@BlueSky You could do it this way, if you didn't want to do it in M:
Respectfully,
Zoe Douglas (DataZoe)
Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/
@BlueSky it will be super easy to do in power query, is that ok?
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@BlueSky ,
In addition to @parry2k answer, this is the dax version:
@BlueSky in power query , do the following:
- add a blank query
- click advanced editor
and paste following code
let
#"Source" = Table.FromList({1..5}, Splitter.SplitByNothing(),{"index"},null, ExtraValues.Error),
#"Added Index" = Table.AddIndexColumn(#"Source", "Factor", 0,0.5),
#"Changed Type" = Table.TransformColumnTypes(#"Added Index",{{"index", Int64.Type}})
in
#"Changed Type"
I would 💖 Kudos 🙂 if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.