0
ایجاد آلارم یا هشدار اتمام زمان انجام کار در Excel
با سلام ، من در فایل اکسل، یک لیست کارهای قابل انجام دارم و برای هر کدام نیز زمان انجام آن و زمان اتمام آن مشخص می باشد. نیاز دارم که در اکسل ، به محض اینکه فرصت اتمام آن عمل به سر رسید و یا گذشته است به من آلارم و ارور بدهد. ممنون از دوستان
4 پاسخ
1
اکسل فکر نمی کنم همچین امکانی داشته باشه ولی توی one note یا outlook می تونید تنظیم کنید
1
You can create reminders or notifications in MS Excel using 3 methods quickly and easily: 1. Use the IF function to display a message =IF(B2<TODAY()+3,”Send Reminder”,””) 2. Use conditional formatting Click on Home Tab In the Styles command group select conditional formatting tab Click on New Rule… In the new formatting rule window select ‘Use a formula to determine which cells to format’ Under the ‘Format values where this formula is true:’ write the formula given below =AND(C2<>””,C2<TODAY()+3) Next click on Format and apply the formatting of the cell and font of your choice 3. Use Excel VBA with a ‘for loop’. The macro code is given below: Private Sub Workbook_Open() For Each cell In Range(“B2:B100”) If cell.Value < Date + 3 And cell.Value <> “” Then cell.Interior.ColorIndex = 3 cell.Font.ColorIndex = 2 cell.Font.Bold = True End If Next End Sub
0
در اکسل میشه ریمایندر ایجاد کرد اما متاسفانه نمیشه چیزی مثل آلارم ساعت ساخت. چون اکسل در لحظه تغییر نمیکنه و خودش آپدیت نمیشه. باید کاربر آپدیتش کنه مثلا با تغییر در یک سلول. فرضا اگر یک فایل اکسل چند روز باز باشه بدون اینکه کسی باهاش کار کنه، هیچ ریمایندری هم کار نمیکنه حتی اگر شرط موجود در conditional formating هم true باشه
1
سوال خوبی بود سروش عزیز ، مراحل کاملش تو لینک زیر توضیح داده شده ، کمک خواستی بگو
http://www.exceltrainingvideos.com/how-to-create-notifications-or-reminders-automatically-in-excel/