March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Dear Community,
I would like to have a DAX that show all the Transaction Number and Job Number if JobInvoiceNumber is blank.
Solved! Go to Solution.
Hi @NickProp28 - Sorry, Not sure if i understood this correctly but if you want to just show the rows which have JobInvoiceNumber as blank, you dont need to write DAX.
It can be done using Filter on this Visual/Filter on this page pane.
Just select the InvoiceNo to blank and it will show you only 2 rows. Example as below:
Is this you are looking for?If not please explain further.
Cheers,
-Namish B
Hi @NickProp28 -
Can you try this:
NewInvoiceNo = IF(SELECTEDVALUE('Table'[InvoiceNo]) = "", CONCATENATE(SELECTEDVALUE('Table'[TxnNumber]),SELECTEDVALUE('Table'[JobNumber])), SELECTEDVALUE('Table'[InvoiceNo]))
Hope this helps.
Cheers,
-Namish B
Dear @Anonymous ,
Thank you. But here is the expected outcome Im looking for.
Thats only show transactionNumber and JobNumber when the condition is blank in JobInvoiceNumber.
Hi @NickProp28 - Sorry, Not sure if i understood this correctly but if you want to just show the rows which have JobInvoiceNumber as blank, you dont need to write DAX.
It can be done using Filter on this Visual/Filter on this page pane.
Just select the InvoiceNo to blank and it will show you only 2 rows. Example as below:
Is this you are looking for?If not please explain further.
Cheers,
-Namish B
@NickProp28 , put a visual level filter JobInvoiceNumber is Blank
or have one or all measure isblank filter
calculate(countrows(Table), filter(Table, isblank(Table[JobInvoiceNumber])))
Dear @amitchandak ,
Thanks for your response. Its work when i filter blank in visual level. But Im not get your idea about the DAX. I tried it and return nothing. Can please explain more to me?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |