Title: PC, EXCEL AND WORD SHORT TRICKS : Feel free to contribute ! Post by: CCMS on December 01, 2023, 05:44:50 PM I thought to collect it all at one place since I might forget it and later look for the amazing tricks I came through recently.
1. Word Space Trick Problem: Suppose there is a word file with name a.docx . The text inside word is something like this ~ "A quick brown fox jumps over a lazy dog". Now the challenge is to remove spaces using Replace method. Trick: Press Ctrl + H to bring the replacement menu. Type - Code: ( ){2,} Code: \1 ALTERNATIVE_SHORT_TRICK Press Ctrl + H and type : ^w In REPLACE WITH box press spacebar just once and click on replace all. 2. PRANK Scene: Let us assume you want to play a prank with your friend by showing him a dialog box. How will you do it ? Method: You will type this and save as anything.vbs file Code: do 3. Quick Launch Of Daily Websites on Chrome Problem: Suppose you have 20 websites to open daily and you have a default url to visit then what can you do to automate the process ? Solution: Type in below code in a text file and save it as a ANYTHING.bat file Code: @echo off If you found that interesting, please send some merit and join Utopia_uAI (https://utopia.im/1293CA4BD62D4D297B197643C58669DC) 4. Fast typing Short trick in excel Problem : How will you write 1 to 10 easily in excel? Answer : Type 1 and then hit ENTER. Now go back to cell which includes 1. Press ALT + EIS or you can also press ALT + HFIS and a window will pop up. Type stop value as 10 and hit OK. 5. How will you calculate age in Excel? Ans. Code: =DATEDIF(A1,TODAY(),"Y") 6. How will you generate random sentence in word? Ans. Type this and hit enter button. Code: =rand.old(1,1) 7. How will you use Autofit to format Excel to look well? Ans. Use Alt + H + O + I and you can also use Alt +H+O+A for rows and columns by selecting it all 8. How to know Maximum Ram Capacity Ans. Run below code in CMD Code: wmic memphysical get Maxcapacity, MemoryDevices |