Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi there Power BI Community,
I have this data set and would like to repeat the [DateMonth] value of [CollectionType] = "First" where the [CollectionType] = "Recurring". I cannot use the fill-down function in this instance due to the layout of the data and am hoping to accomplish this in Power Query by adding a Custom Column.
My M code goes something along the lines of:
Lines 1 and Line 3 are fine. I need help to update line 2 please. so that the blanks in the custom column are replaced with the value of [DateMonth] that appears where Collection Type = "First"
if [Collection Type] = "First" then [DateMonth]
else if [Collection Type] = "Recurring" then insert the record of [DateMonth] that is equal to "First"
else null
Here is an example of the dataset:
Here is an example of what the data set should end up looking like:
Thanks in advance.
Solved! Go to Solution.
@BICrazy
Add the following custom column :
=
if [Collection Type] = "First" then
[DateMonth]
else if [Collection Type] = "Recurring" then
let
m = _[DateMonth],
p = _[#"Policy No#"]
in
Table.SelectRows(PreviousStep, each _[#"Policy No#"] = p and _[#"Collection Type"] = "First")[
DateMonth
]{0}
else
null
Replace the "PreviousStep" with the correct step name in your query
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@BICrazy
Add the following custom column :
=
if [Collection Type] = "First" then
[DateMonth]
else if [Collection Type] = "Recurring" then
let
m = _[DateMonth],
p = _[#"Policy No#"]
in
Table.SelectRows(PreviousStep, each _[#"Policy No#"] = p and _[#"Collection Type"] = "First")[
DateMonth
]{0}
else
null
Replace the "PreviousStep" with the correct step name in your query
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |