Forum Discussion
ruesaint_denis
Helper I
4 years agoFill in values if rows the same for a particular column
Hi everyone, I have a Date column that I would like to fill with values, if the values in the column "Subject" are the same. Here's a screenshot of my data: The first row has subject...
- 4 years ago
ruesaint_denis , For each date create new column in DAX like
new start time =
var _max = maxx(filter(table, [subject] =earlier([subject]) && not(isblank([Start Date Email]))), [Start Date Email])
return
if(isblank([Start Date Email]), _max, [Start Date Email])
amitchandak
Super User
4 years agoruesaint_denis , For each date create new column in DAX like
new start time =
var _max = maxx(filter(table, [subject] =earlier([subject]) && not(isblank([Start Date Email]))), [Start Date Email])
return
if(isblank([Start Date Email]), _max, [Start Date Email])