Re: Power Automation to Create a Calendar Invite When Form is Submitted. Start time 30 min before form start time.
Your date/time field must be in ISO8601 format to work. What you show would not be correct since you have two fields populated in the Start and End time fields. If you look at this action, it shows what is required for it to work:

In order to subtract 30 minutes from the initial start time in your form, you need to use the expression I posted earlier, substituting utcNow() with the field in your form (provided that is in the appropriate date format to begin with.
addMinutes(utcNow(),-30)
You may want to test it out by using the above expression in your start time and use the expression addMinutes(utcNow(),30) in the End time.