Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
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 |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 5 | |
| 3 |
| User | Count |
|---|---|
| 28 | |
| 20 | |
| 19 | |
| 19 | |
| 12 |