Forum Discussion
Nick221_
3 years agoFrequent Visitor
Pulling data between two tables.
Below is the formula I am using on multiple columns. It will pull data from one table to another by my two Concat search coulmns (Concat Search & Column). However, I wanted to use this same formula f...
- 3 years ago
If the column is being added to the Affiliate List table you can try
Completion Time = VAR CurrentColumn = 'Affiliate List'[Column] RETURN CALCULATE ( MAX ( 'Affiliate Submission'[Completion time].[Date] ), REMOVEFILTERS ( 'Affiliate Submission' ), 'Affiliate Submission'[Concat Search] = CurrentColumn )
Nick221_
3 years agoFrequent Visitor
The formula is as follows:
if(CALCULATE(LASTNONBLANK('Affiliate Submission'[Completion time].[Date],1),FILTER(ALL('Affiliate Submission'),'Affiliate List'[Column]='Affiliate Submission'[Concat Search]))=blank(),CALCULATE(LASTNONBLANK('Affiliate Submission'[Completion time].[Date],1),FILTER(ALL('Affiliate Submission'),'Affiliate List'[Column]='Affiliate Submission'[Concat Search])))
I am not receving any errors, however it is not pulling any data. Just blanks.