Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply

Fill 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: 

ruesaint_denis_0-1643815872786.png

 

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?  

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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])

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@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])

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.