Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Exception Message that is not Move In Rcpt or Move Out Rcpt will take the value from the Date column. If it is Move In Rcpt or Move Out Rcpt, take the date value in Move In Rcpt or Move Out Rcpt.
The results I want
Date | Exception Message | Result |
06/09/2023 | Expedited 82 Days | 06/09/2023 |
19/07/2023 | Move In Rcpt 16/05/2023 | 16/05/2023 |
20/06/2023 | Move Out Rcpt 02/09/2023 | 02/09/2023 |
Solved! Go to Solution.
Give this a try as a calculated column on your table.
Result =
IF (
ISERROR ( DATEVALUE ( RIGHT ( YourTable[Exception Message], 10 ) ) ),
BLANK(),
DATEVALUE ( RIGHT ( YourTable[Exception Message], 10 ) )
)
Give this a try as a calculated column on your table.
Result =
IF (
ISERROR ( DATEVALUE ( RIGHT ( YourTable[Exception Message], 10 ) ) ),
BLANK(),
DATEVALUE ( RIGHT ( YourTable[Exception Message], 10 ) )
)
Oh it work thank so much sir.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
58 | |
56 | |
56 | |
38 | |
29 |
User | Count |
---|---|
75 | |
62 | |
45 | |
40 | |
39 |