Forum Discussion
dp32
5 years agoHelper I
Expression.Error: We cannot apply field access to the type Number.
I am trying to randomize data in-place: #"Randomize" = Table.TransformColumns(#"Changed Type1", {{"Value", each Number.RandomBetween(0.95,1.05)*[Value]}}) However, I get the following error m...
- Anonymous5 years ago
try this
#"Randomize" = Table.TransformColumns(#"Changed Type1", {{"Value", each Number.RandomBetween(0.95,1.05)*_}})
PS
if the answer works for you and you want to know how and why it works, just ask
Anonymous
5 years agoNot applicable
try this
#"Randomize" = Table.TransformColumns(#"Changed Type1", {{"Value", each Number.RandomBetween(0.95,1.05)*_}})
PS
if the answer works for you and you want to know how and why it works, just ask