Forum Discussion
Fill empty cells based on criteria
- 9 years ago
Hi AntanasK,
According to your description, you should be able to create a calculate column using DAX for the "Customer No_" column in this scenario. See my sample below.
I assume you have a table called "Table1" like below.
Then you should be able to use the formula below to create the calculate column for the "Customer No_".
New Customer No_ = VAR vidInio = Table1[Vidinio dok.nr.] RETURN CALCULATE ( FIRSTNONBLANK ( Table1[Customer No_], 1 ), FILTER ( ALL ( Table1 ), Table1[Vidinio dok.nr.] = vidInio && Table1[Customer No_] <> BLANK () && Table1[Customer No_] <> "" ) )Here is the sample pbix file for your reference.:smileyhappy:
Regards
Sorry. Filled with numbers from data. In column "Vidinio dok.nr." i have invoice numbers, also i have account numbers (G_L Account No_) and Customer No_. Account numbers with the beginning 5 are incomes, others with 6 are costs. As i filter one invoice i.e. SFI100003 only incomes have customer numbers. I need that not only incomes but also costs will have the same cust no. And the same situation are with all invoices in my data. Hope that explained exactly.
Thank you.
Antanas
Hi AntanasK,
According to your description, you should be able to create a calculate column using DAX for the "Customer No_" column in this scenario. See my sample below.
I assume you have a table called "Table1" like below.
Then you should be able to use the formula below to create the calculate column for the "Customer No_".
New Customer No_ =
VAR vidInio = Table1[Vidinio dok.nr.]
RETURN
CALCULATE (
FIRSTNONBLANK ( Table1[Customer No_], 1 ),
FILTER (
ALL ( Table1 ),
Table1[Vidinio dok.nr.] = vidInio
&& Table1[Customer No_] <> BLANK ()
&& Table1[Customer No_] <> ""
)
)
Here is the sample pbix file for your reference.:smileyhappy:
Regards
- AntanasK9 years agoAdvocate I
Yes, that is what i need. Thank you very much for your help v-ljerr-msft