Forum Discussion
ksab23
Helper I
3 years agoCreate new dataset with blanks
Hi All, I was tasked to create a rather complex report that would showcase all users from a given list that participated in any of our offered videos. However, I was given two datasets - one t...
- 3 years ago
Hi there,
first replace Registration value yes with 1.then pick a video title and pivot it
Then merge two tables on the name
Then expand it
Then replace null in all columns by referencing that table
let
Source = #"Table",
ReplaceNulls = Table.TransformColumns(Source,{},(x) => Replacer.ReplaceValue(x,null,0))
in
ReplaceNullsHope that helps
olgad
Resident Rockstar
3 years agoHi there,
first replace Registration value yes with 1.
then pick a video title and pivot it
Then merge two tables on the name
Then expand it
Then replace null in all columns by referencing that table
let
Source = #"Table",
ReplaceNulls = Table.TransformColumns(Source,{},(x) => Replacer.ReplaceValue(x,null,0))
in
ReplaceNulls
Hope that helps