Hello Experts,
Is it possible to the default to screen 1(attached) when you open the calendar app? Rather than seeing the blank screen that only shows the drop down, We want the Calendar with as the default screen.
Solved! Go to Solution.
I was able to correct it to:
Set(_userDomain, Right(User().Email, Len(User().Email) - Find("@", User().Email)));
Set(_dateSelected, Today());
Set(_firstDayOfMonth, DateAdd(Today(), 1 - Day(Today()), Days));
Set(_firstDayInView, DateAdd(_firstDayOfMonth, -(Weekday(_firstDayOfMonth) - 2 + 1), Days));
Set(_lastDayOfMonth, DateAdd(DateAdd(_firstDayOfMonth, 1, Months), -1, Days)));
Set(_calendarVisible, false);
Set( _myCalendar,
LookUp( Office365Oulook.CalendarGetTables().value, DisplayName = "Calendar"));
Set(_minDate, DateAdd(_firstDayOfMonth, -(Weekday(_firstDayOfMonth) - 2 + 1), Days));
Set(_maxDate, DateAdd(DateAdd(_firstDayOfMonth, -(Weekday(_firstDayOfMonth) - 2 + 1), Days), 40, Days));
ClearCollect(MyCalendarEvents, Office365Outlook.GetEventsCalendarViewV2(_myCalendar.Name, Text(_minDate, UTC), Text(_maxDate, UTC)).value);
Set(_calendarVisible, true)
Hi @ValerieAn ,
I am not familiar with the App, but you just need to put at App OnStart
Navigate(YourScreenName)
(replace with actual screen name)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Thank you @WarrenBelz for your suggestion. That solution was not successful for me.
I tried this this formula in the OnStart field but it did not work as well due to some errors. Not sure what is incorrect.
Set( _userDomain, Right( User().Email, Len( User().Email ) - Find( "@", User().Email ) ) );
Set( _dateSelected, Today() );
Set( _firstDayOfMonth, DateAdd( Today(), 1 - Day( Today() ), Days ) );
Set( _firstDayInView,
DateAdd( _firstDayOfMonth, -( Weekday( _firstDayOfMonth) - 2 + 1 ), Days )
);
Set( _lastDayOfMonth, DateAdd( DateAdd( _firstDayOfMonth, 1, Months ), -1, Days ) );
Set( _calendarVisible, false );
Set( _myCalendar,
LookUp( Office365.CalendarGetTables().value, DisplayName = "Calendar" )
);
Set( _minDate,
DateAdd( _firstDayOfMonth, -( Weekday(_firstDayOfMonth) - 2 + 1 ), Days )
);
Set( _maxDate,
DateAdd(
DateAdd( _firstDayOfMonth, -( Weekday(_firstDayOfMonth) - 2 + 1 ), Days ),
40,
Days
)
);
ClearCollect( MyCalendarEvents,
Office365.GetEventsCalendarViewV2(_myCalendar.Name,
Text(_minDate, UTC ),
Text(_maxDate, UTC )
).value
);
Set( _calendarVisible, true )
I was able to correct it to:
Set(_userDomain, Right(User().Email, Len(User().Email) - Find("@", User().Email)));
Set(_dateSelected, Today());
Set(_firstDayOfMonth, DateAdd(Today(), 1 - Day(Today()), Days));
Set(_firstDayInView, DateAdd(_firstDayOfMonth, -(Weekday(_firstDayOfMonth) - 2 + 1), Days));
Set(_lastDayOfMonth, DateAdd(DateAdd(_firstDayOfMonth, 1, Months), -1, Days)));
Set(_calendarVisible, false);
Set( _myCalendar,
LookUp( Office365Oulook.CalendarGetTables().value, DisplayName = "Calendar"));
Set(_minDate, DateAdd(_firstDayOfMonth, -(Weekday(_firstDayOfMonth) - 2 + 1), Days));
Set(_maxDate, DateAdd(DateAdd(_firstDayOfMonth, -(Weekday(_firstDayOfMonth) - 2 + 1), Days), 40, Days));
ClearCollect(MyCalendarEvents, Office365Outlook.GetEventsCalendarViewV2(_myCalendar.Name, Text(_minDate, UTC), Text(_maxDate, UTC)).value);
Set(_calendarVisible, true)
I am not sure how that relates to your question about screen navigation, but glad you got it working.
Hello @WarrenBelz
Thank you for your help. Your solution was helpful but because the calendar was based on selection, it still did not pull all the components on the calendar to the default screen like in the screen shot. The solution that worked was from Microsoft with a few corrections. I do appreciate your response.
User | Count |
---|---|
256 | |
108 | |
97 | |
51 | |
39 |