Forum Discussion
smpa01
1 year agoCommunity Champion
Ensuring typesafe
how can I ensure, the function execution result returns same type as mentioned in the function?
let
test_type = () as text=> "Hello",
tbl = #table(type table [Name = text, Score = numb...
- 1 year ago
How about this?
= Table.AddColumn(tbl, "Custom", each test_type(), Value.Type(test_type()))
AlexisOlson
1 year agoSuper User
How about this?
= Table.AddColumn(tbl, "Custom", each test_type(), Value.Type(test_type()))- smpa011 year agoCommunity Champion
Smashing