Forum Discussion
Larry_Wang
4 years agoHelper I
How to create a table using DAX
Hi Every one, I have a table below and in the Leave Date column there are some blank entries. I want to create a new table that not including the blank date ( only contains user id with leave dat...
- 4 years ago
Hi,
Here is an example:Nonblank = FILTER(nonblanktable,nonblanktable[Leave Date]<>BLANK())
I hope this helps to solve your issue and if it does consider accepting this as a solution and giving the post a thumbs up!
ValtteriN
4 years agoCommunity Champion
Hi,
Here is an example:
Nonblank = FILTER(nonblanktable,nonblanktable[Leave Date]<>BLANK())
I hope this helps to solve your issue and if it does consider accepting this as a solution and giving the post a thumbs up!
Larry_Wang
4 years agoHelper I
Hi ValtteriN
Thank you again for the quick and good solutions on this issue. It is really what I want.
Have a nice day!
Larry