User Profile
AchrafHoudane
Copper Contributor
Joined 3 years ago
User Widgets
Recent Discussions
- 879Views0likes0Comments
Re: IFS formula many conditions
S_Stenis after many hours of juggling, here are the updated formulas =IF(L2="Not completed"; IF(TODAY()>M2; "Overdue"; IF(AND(M2<TODAY(); L2>M2); "Overdue"; "Still Time to Complete")); IF(L2>M2; "Overdue"; IF(L2<=M2; "Completed On Time"; "Still Time to Complete"))) Start Date K2 Completion Date L2 Deadline (K2 + 30 days) M2 Satus 21/06/2023 21/06/2023 21/07/2023 Completed On Time 21/06/2023 16/08/2023 21/07/2023 Overdue 21/06/2023 21/07/2023 21/07/2023 Completed On Time 21/06/2023 Not completed 21/07/2023 Overdue 21/09/2023 Not completed 21/10/2023 Still Time to Complete874Views0likes1CommentRe: white screen for few seconds when opening edge
Hello pcx34 You might encounter a white screen issue when launching Microsoft Edge for several reasons. To address this problem, consider the following steps: Basic Troubleshooting: Update Edge Clear Browsing Data Advanced Troubleshooting: Disable Extensions: Outdated or incompatible extensions can lead to problems. To disable extensions, open Edge, click the three dots in the top-right corner, select "Extensions," and disable each one individually by toggling them off. Disable Hardware Acceleration: While hardware acceleration can boost performance, it can also cause issues. To disable it, open Edge, click the three dots, go to "Settings," then "System and performance," and under "Advanced settings," click "Open advanced settings." Toggle off "Use hardware acceleration when available." Reset Edge: If the issue persists, consider resetting Edge to its default settings. This action will remove extensions and return Edge to its initial state. To reset Edge, access Windows Settings, go to "Apps & features," locate Microsoft Edge, click the three dots next to it, and select "Modify" > "Repair." If that doesn't work, choose "Modify" > "Reset." These steps should help resolve the white screen problem in Microsoft Edge.6.8KViews0likes0CommentsRe: PowerShell combine filters ResourceType & AdditionalResponse
DrCyberCure 2/ Try this command instead : Get-CalendarProcessing | Where-Object { $_.AdditionalResponse -contains "WORD" } | Select Alias Here is my attempt at writing an example : # Get all mailboxes. $mailboxes = Get-Mailbox -ResultSize Unlimited # Filter mailboxes by ResourceType. $mailboxes = $mailboxes | Where-Object { $_.ResourceType -eq "Workspace" } # Filter mailboxes by AdditionalResponse containing "WORD". $mailboxes = $mailboxes | Where-Object { $_ | Get-CalendarProcessing | Select-Object -ExpandProperty AdditionalResponse -like "*WORD*" } # Select the Alias property. $mailboxes = $mailboxes | Select-Object Alias # Export the list to a CSV file. $mailboxes | Export-Csv -Path "C:\path\to\output.csv" -NoTypeInformation not tested yet,1KViews0likes0Comments
Recent Blog Articles
No content to show