Hi,
I have a date column in Dataverse and would like to set its default value to today if a different column has a specific value.
Flow is not really an option as its too slow.
Thanks
Todd
Use this
Hi @Tango
Not Business Rules as a business rule, but you can use Javascript or a WorkFlow to do it
function formOnload(executionContext) {
// Get a reference to the form context
var formContext = executionContext.getFormContext();
// Create a new Date object to get today's date
var today = new Date();
// Set the value of the date field
formContext.getAttribute("nombre_del_campo_fecha").setValue(today);
}
Another way is to use Power Fx,
mmbr1606
22
Super User 2025 Season 1
stampcoin
17
ankit_singhal
11
Super User 2025 Season 1