PowerFx now includes User Defined Functions. I want to create an IfBlank(value, default) function which would be defined like:
IfBlank(value: T, default: T): T = If(IsBlank(value), default, value);
It doesn't look like this is possible though - can you confirm?
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744844362a4596743.html
评论列表(0条)