Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
is there a way to copy the trans_type to the blank value using dax?
sample
Thanks.
Solved! Go to Solution.
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
It is for creating a new column.
trans_type_fill CC =
VAR _CurrentRowInvoice = data[invoice_no]
VAR _CurrentRowDueDate = data[due_date]
VAR _t =
FILTER (
data,
data[invoice_no] = _CurrentRowInvoice
&& data[due_date] = _CurrentRowDueDate
&& data[net_amount] == 0
)
VAR _transtype =
SUMMARIZE (
_t,
data[trans_type]
)
RETURN
_transtype
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
It is for creating a new column.
trans_type_fill CC =
VAR _CurrentRowInvoice = data[invoice_no]
VAR _CurrentRowDueDate = data[due_date]
VAR _t =
FILTER (
data,
data[invoice_no] = _CurrentRowInvoice
&& data[due_date] = _CurrentRowDueDate
&& data[net_amount] == 0
)
VAR _transtype =
SUMMARIZE (
_t,
data[trans_type]
)
RETURN
_transtype
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 21 | |
| 10 | |
| 8 | |
| 8 |