The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello
I have two tables which I have joined them with a common column.
I put the common column in my dashboard table and now I want to put a second column from the second table next to it.
This second column has values Yes or No and no Blanks.
When I drag that column, the Yes/No are displayed next to the common column but in some instances, there are Blanks obviously because there is no value in the second column corresponding to the value in the common column.
How can I replace these blanks with 'New'?
I tried to use the related function but it says the table doesn't exist or there is no relationship.
Thanks
Solved! Go to Solution.
@Anonymous , In march 2020 release you have support for coalesce
coalesce([Measure],"New")
Hi @amitchandak ,
As @amitchandak said, creating a measure:
coalesce(max( table[column] ),"New")
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @amitchandak ,
As @amitchandak said, creating a measure:
coalesce(max( table[column] ),"New")
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please share a sample data set or screenshot of your tables, visual and table relationship
User | Count |
---|---|
77 | |
76 | |
36 | |
31 | |
29 |
User | Count |
---|---|
93 | |
79 | |
57 | |
48 | |
48 |