March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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 "Whoop, There it is!..." and Date values for Sent Time, End Time, and Sent Date. The last 2 rows also have the subject "Whoop, There it is!...", but not Date values for Sent Time, End Time, and Sent Date. I would like to somehow copy the Date values in Sent Time, End Time, and Sent Date for the first row of of the subject "Whoop, There it is!...", to the last 2 rows.
Esstentially, for each subject row, if Date values for Sent Time, End Time, and Sent Date = null, and there is an identical Subject value where Date values for Sent Time, End Time, and Sent Date is not null, copy those Date values.
Is this possible?
Solved! Go to Solution.
@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])
@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])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
87 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |