Rich Kerr
Rich Kerr
  • Видео 170
  • Просмотров 1 306 098
EXCEL - LINK TO AN IMAGE
Use the IMAGE function to pull an image directly inside a cell in your spreadsheet. Great for product inventories or staff/customer lists.
#exceltips #imageincell #microsoftexcel #imagesinexcel #ApexExcelTraining
Просмотров: 45

Видео

IMAGE IN AN EXCEL CELL
Просмотров 303 месяца назад
Load images directly into a cell in your spreadsheet. It will stay with the appropriate record like any other data point. #exceltips #excelimages #exceltutorial #exceltipsandtricks #imageinexcel #ApexExcelTraining
ROLL DICE IN EXCEL
Просмотров 543 месяца назад
Use images and the RANDBETWEEN function to generate a simulated dice role in Excel.
TIMESHEET IN EXCEL
Просмотров 273 месяца назад
Microsoft Excel Based Time Sheet Exercise #Excel #time #timesheet #exceltimesheet #timeclock #laborcost #staffcost
Excel Hyperlink in Zillow
Просмотров 294 месяца назад
Look up property addresses in Excel on Zillow #Excel #exceltutorial #ApexExcelTraining #exceltips
EXCEL - CREATE DYNAMIC DASHBOARD CHARTS
Просмотров 314 месяца назад
Create User Adjustable Charts to summarize data. #Microsoft #exceltips #exceltutorial #exceltricksandtips #exceltips #microsoftexcel #spreadsheet #dashboardsnoexcel #ApexExcelTraining
EXCEL: COMPUTE AGE IN DAYS
Просмотров 314 месяца назад
Use DAYS and TODAY Functions to calculate aga of an invoice. Use IF to handle missing invoice dates. #Excel #exceltutorial #ApexExcelTraining #exceltips #skillup
EXCEL'S CONVERT TO ROMAN FUNCTIONALITY
Просмотров 224 месяца назад
Use the ROMAN function to convert an Arabic number to a Roman numeral. #Excel #exceltutorial #ApexExcelTraining #exceltips
EXCEL'S PERCENTOF FUNCTION
Просмотров 124 месяца назад
Use PERCENTOF instead of dividing one number over another to get the percentage. #Excel #exceltutorial #ApexExcelTraining #exceltips
EXCEL GROUPBY Function
Просмотров 344 месяца назад
Use GROUPBY instead of creating a Pivot Table to rapidly aggregate a set of data. Super fast and easy to do! #Excel #exceltutorial #ApexExcelTraining #exceltips
ADD TABLES TO EXCEL DATA MODEL
Просмотров 374 месяца назад
Use the Data Model feature to build Pivot Tables from multiple data sources at once. #Excel #exceltutorial #ApexExcelTraining #exceltips #microsoft #microsoftexcel
SWITCH FUNCTION Example 2
Просмотров 264 месяца назад
Use the SWITCH function rather than nested IF/IFS to select a value based an a matched criteria value. #Excel #exceltutorial #ApexExcelTraining #exceltips #microsoft #microsoftexcel
Excel Name Manager
Просмотров 184 месяца назад
Master your Excel game with Excel Name Manager! 📊💼 Organize, streamline, and elevate your spreadsheets effortlessly. Watch our tutorial video now to unlock the full potential of Excel Name Manager! #ExcelNameManager #excelmastery #ApexExcelTraining #exceltips #exceltutorial #skillup
Paste Transpose
Просмотров 104 месяца назад
Dive into the world of transformation with our Paste Tranpose video tutorial! 🚀✨ Unlock the secrets to seamless innovation and creativity. Watch now and elevate your projects to the next level! #PasteTransose #excel #exceltips #exceltutorial #ApexExcelTraining
IMPORT FROM WEB S&P 500
Просмотров 444 месяца назад
Learn how to effortlessly import S&P 500 data from the web! Our tutorial guides you through the process step-by-step, helping you automate your financial analysis. Say goodbye to manual entry and outdated information. Subscribe now for expert tips and stay ahead in finance! #ApexExcelTraining #excel #exceltips #exceltutorial #skillup
Today Function
Просмотров 376 месяцев назад
Today Function
Microsoft Excel - NUMBERING CERTAIN ITEMS
Просмотров 186Год назад
Microsoft Excel - NUMBERING CERTAIN ITEMS
Excel - ENHANCE FILTER WITH SEARCH
Просмотров 154Год назад
Excel - ENHANCE FILTER WITH SEARCH
EXCEL SEQUENCE FUNCTION PART 2
Просмотров 971Год назад
EXCEL SEQUENCE FUNCTION PART 2
Microsoft Excel DYNAMIC LIST OF TOP VALUES - CHOOSEROWS & SORTBY
Просмотров 174Год назад
Microsoft Excel DYNAMIC LIST OF TOP VALUES - CHOOSEROWS & SORTBY
FILTER SALES CALLS in Microsoft Excel
Просмотров 154Год назад
FILTER SALES CALLS in Microsoft Excel
Microsoft Excel - Average of the Last X Sales
Просмотров 115Год назад
Microsoft Excel - Average of the Last X Sales
COUNT Days Between 2 Dates Until a Value is Added
Просмотров 157Год назад
COUNT Days Between 2 Dates Until a Value is Added
MICROSOFT EXCEL SORT AND FILTER PART 2
Просмотров 71Год назад
MICROSOFT EXCEL SORT AND FILTER PART 2
Excel Hyperlink to Zillow
Просмотров 237Год назад
Excel Hyperlink to Zillow
Microsoft Excel - Force Specific Date Formatting In your Formula
Просмотров 403Год назад
Microsoft Excel - Force Specific Date Formatting In your Formula
Compute Elapsed Time (up to the Current Time) in Microsoft Excel
Просмотров 570Год назад
Compute Elapsed Time (up to the Current Time) in Microsoft Excel
Excel Zip Code Heat Map
Просмотров 22 тыс.Год назад
Excel Zip Code Heat Map
Microsoft Excel Hyperlink to Google Finance UPDATED
Просмотров 19 тыс.Год назад
Microsoft Excel Hyperlink to Google Finance UPDATED
Multi Level Sort In Microsoft Excel
Просмотров 1,3 тыс.Год назад
Multi Level Sort In Microsoft Excel

Комментарии

  • @steveschweiger6670
    @steveschweiger6670 17 часов назад

    For those of us that don't have the version that supports those functions. This VBA code does get stock price. Can be modified to get other data. The majority of the code pulls in the web site the key is the line "price = html.getElementsByClassName("livePrice yf-mgkamr")(0).innerText". As yahoo performs updates this "class" may change. So you'll need to know how to update that using the Inspect function and highlighting the data and copying the class name on the "price =" line. Hope this helps. Function Get_Current_Price(a As String) As Currency Dim request As Object Dim response As String Dim html As New HTMLDocument Dim website As String Dim price As Variant ' Website to go to where "a" is the Ticker Symbol website = "finance.yahoo.com/quote/" & a & "?p=" & a & "&.tsrc=fin-srch" ' Create the object that will make the webpage request. Set request = CreateObject("MSXML2.XMLHTTP") ' Where to go and how to go there - probably don't need to change this. request.Open "GET", website, False ' Get fresh data. request.SetRequestHeader "If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT" ' Send the request for the webpage. request.Send ' Get the webpage response data into a variable. response = StrConv(request.ResponseBody, vbUnicode) ' Put the webpage into an html object to make data references easier. html.body.innerHTML = response ' Get the price from the specified element on the page. This is the piece that may change over time if Yahoo updates its HTML code. Go to site, right mouse button, choose inspect and then run mouse over html. Drill down on right arrows until only price is highlighted, that will show the the HTML class name (currently it is "livePrice yf-mgkamr"). For now code should work as is as of 8/5/2024. price = html.getElementsByClassName("livePrice yf-mgkamr")(0).innerText Get_Current_Price = price ' Output the price into a message box. Commented out get ride of (') if you want to use it for debuging. 'MsgBox price End Function

  • @kmac1504
    @kmac1504 6 дней назад

    Nice

  • @ravikumark2333
    @ravikumark2333 7 дней назад

    Thank you so much

  • @JulieHerr-e3r
    @JulieHerr-e3r 21 день назад

    So simple, glad I found your video!

    • @ApexTrainingLLC
      @ApexTrainingLLC 21 день назад

      Hey Julie, thank you for the comment. Please like, share and subscribe.

  • @mohammadzaman7383
    @mohammadzaman7383 Месяц назад

    Cool

    • @ApexTrainingLLC
      @ApexTrainingLLC Месяц назад

      Thanks! Please like, share and subscribe. Peace!

  • @Christina-fc7ul
    @Christina-fc7ul Месяц назад

    Could you please show us how to formulate a cell to show time - many times I have time data shown like 45678 - and it is so annoying to change from the top bar every time do you know how we can have a keyboard shortcut to fix it

    • @ApexTrainingLLC
      @ApexTrainingLLC Месяц назад

      Hi Christina. Thank you for your inquiry. You can use the shortcut key combination of CTRL + SHIFT + 3 to apply date formatting in the format dd-mmm-yy. To apply a the short date format, you can right-click the menu choice for short date from the ribbon, then choose to add it to your quick access toolbar. Any icon on the quick access toolbar can be selected by pressing the Alt key, + the number that is the position of the icon on the toolbar. So if it is the 5th icon on your quick access toolbar, you would press Alt+5. I will make a video showing this process.

  • @amittaizero
    @amittaizero Месяц назад

    Man you just saved me a lot of stress. I've signed up for a few mapping services the past few days to do just this -- this will make things much easier with a project I'm working on.

    • @ApexTrainingLLC
      @ApexTrainingLLC Месяц назад

      Glad I could help! Please don't forget to share and subscribe. Peace!

  • @Safety100
    @Safety100 Месяц назад

    Pls help me can you share me the steps with keys

  • @MrSardarshah
    @MrSardarshah Месяц назад

    Best video on multilevel grouping in excel

    • @ApexTrainingLLC
      @ApexTrainingLLC Месяц назад

      Thanks for the feedback! Please subscribe!

  • @user-vs3eg9yn2q
    @user-vs3eg9yn2q Месяц назад

    Doesn’t seem to work anymore. I get taken to “/homes. Not the address

  • @mpesmail1834
    @mpesmail1834 2 месяца назад

    I tried, it prompts back 'VALUE' and not any number

  • @user-yj5qd3fs6e
    @user-yj5qd3fs6e 2 месяца назад

    Bingo! Thank you!!

  • @danielhudspeth5699
    @danielhudspeth5699 2 месяца назад

    incredible. Thank you.

  • @lillianpalmer2556
    @lillianpalmer2556 2 месяца назад

    Thank you so much, this video was so useful, keep up the good work and I have subscribed of course

  • @BrockJamesStory
    @BrockJamesStory 2 месяца назад

    Wow this is cool!!! I just took time out of my day to follow this. Now me and my coworker can play some Yahtzee 😂

  • @BrockJamesStory
    @BrockJamesStory 2 месяца назад

    Keep in up Rich!

  • @dnmurphy48
    @dnmurphy48 2 месяца назад

    very helpful

    • @ApexTrainingLLC
      @ApexTrainingLLC 2 месяца назад

      Thank you @dnmurphy48. Please do subscribe

  • @kevinsantos585
    @kevinsantos585 3 месяца назад

    Obrigado

    • @ApexTrainingLLC
      @ApexTrainingLLC 3 месяца назад

      de nada. obrigado por visitar o canal. por favor inscreva-se!

  • @prajwalshetty2047
    @prajwalshetty2047 3 месяца назад

    ❤👍🇮🇳

  • @adeelzafar5674
    @adeelzafar5674 3 месяца назад

    Thank you SIR!

    • @ApexTrainingLLC
      @ApexTrainingLLC 3 месяца назад

      You are welcome! Thanks for checking out the channel. Please subscribe and share with your friends & colleagues.

  • @BrockJamesStory
    @BrockJamesStory 3 месяца назад

    That’s pretty cool!

  • @judah530
    @judah530 3 месяца назад

    😡 Promo_SM

  • @winnerimonitie6917
    @winnerimonitie6917 3 месяца назад

    I am not seeing ifs in my excel 2016

    • @ApexTrainingLLC
      @ApexTrainingLLC 3 месяца назад

      Unfortunately, IFS (+MAXIFS, MINIFS, and more) only comes with an Office365 subscription. If you, or your company, have purchased Excel 2016 (or older) as a non-subscription product, you won't have access to these newer functions.

    • @winnerimonitie6917
      @winnerimonitie6917 3 месяца назад

      What about in excel 2019 sir

    • @ApexTrainingLLC
      @ApexTrainingLLC 3 месяца назад

      It should be in 2019. answers.microsoft.com/en-us/msoffice/forum/all/my-excel-2016-missing-the-ifs-function/535af21d-456e-4305-a72b-7986211aeab1

    • @ApexTrainingLLC
      @ApexTrainingLLC 3 месяца назад

      Do you have 2019?

  • @MariaCarolinaCruz-dr6ks
    @MariaCarolinaCruz-dr6ks 3 месяца назад

    thanks a lot :)

    • @ApexTrainingLLC
      @ApexTrainingLLC 3 месяца назад

      Thanks for checking in Maria! I'm glad you enjoyed the video!

  • @BrockJamesStory
    @BrockJamesStory 3 месяца назад

    Wwwhhhat I did not think it would be that easy. Always something new to learn!

  • @Vincent425
    @Vincent425 3 месяца назад

    Many thanks!!

    • @ApexTrainingLLC
      @ApexTrainingLLC 3 месяца назад

      You're welcome! I'm glad it was useful! Please subscribe!

  • @bman342a
    @bman342a 3 месяца назад

    I've got Office 365, which has the home/student version of Excel (2016) and doesn't have the map feature (amongst other features). is there an add-in I can purchase that will add these map features?

    • @ApexTrainingLLC
      @ApexTrainingLLC 3 месяца назад

      I don't think Microsoft sells this specific feature as a separate add-in. They are lots of enterprise grade tools like Power Bai & Tableau which offer mapping. I would probably just upgrade to a standard version of Office 365.

  • @souvikghosh5087
    @souvikghosh5087 4 месяца назад

    Nice.I found it useful.I am subscribing it.

    • @ApexTrainingLLC
      @ApexTrainingLLC 4 месяца назад

      Thank you very much. I'm glad it was useful!

  • @souvikghosh5087
    @souvikghosh5087 4 месяца назад

    how to get time difference in xl from today () and any other time in any other cell ? The time must be in year format.

    • @ApexTrainingLLC
      @ApexTrainingLLC 4 месяца назад

      Do you mean you want to know how many years between today() and another date? You might find this video useful... ruclips.net/video/K2PeKZDGnfg/видео.htmlsi=v6eOSE8K8zu4Ssvn

  • @cadeepakgoyal7500
    @cadeepakgoyal7500 4 месяца назад

    I can't tell you in words, how much you helped me. Thanks you very much for this video. I really pray God to bless you

    • @ApexTrainingLLC
      @ApexTrainingLLC 4 месяца назад

      Thank you for your kind words my friend. I’m glad you found the video helpful. Please subscribe to the channel! You might like this as well Microsoft Excel Stocks Data Type ruclips.net/video/OXoVDjkQbIE/видео.html

  • @pepega_dawg_4207
    @pepega_dawg_4207 4 месяца назад

    VERY HELPFUL THANK YOU!

    • @ApexTrainingLLC
      @ApexTrainingLLC 4 месяца назад

      Thanks for the feedback. I’m glad it was useful! Please subscribe!

  • @user-hm1ch7mu2w
    @user-hm1ch7mu2w 4 месяца назад

    How do I create different tasks (lets say in a drop down) but some have 14 day target date and some have 21? ie, if its a postal complaint i have 21 days to respond, if its email I have 14

    • @ApexTrainingLLC
      @ApexTrainingLLC 4 месяца назад

      Hello... I have a created a video for you.... ruclips.net/video/3sS8TnK2My8/видео.html thanks for watching the channel, please subscribe and share!

  • @ibrahimal-saif9322
    @ibrahimal-saif9322 4 месяца назад

    THANK YOU!!

  • @Franseven
    @Franseven 4 месяца назад

    THANK YOU

    • @ApexTrainingLLC
      @ApexTrainingLLC 4 месяца назад

      Thanks for checking in! I’m glad you enjoyed the video. Please subscribe and click the notification bell! 😃

  • @BrockJamesStory
    @BrockJamesStory 4 месяца назад

    I’m first one to like! Everyone let’s give this man some subs! Great tips on here!

  • @hunter371
    @hunter371 4 месяца назад

    That's a nasty cough man! Hope you didn't have Covid. Next time mute that out or record without the nasty coughing throughout. Makes for a much more professional presentation

    • @ApexTrainingLLC
      @ApexTrainingLLC 4 месяца назад

      Thanks Hunter. No Covid, just a cold. I think I will re-do this one after taking a Halls. :-)

  • @leopoldovazquez3255
    @leopoldovazquez3255 4 месяца назад

    Hi Rich, thanks for the explanation. I have a question. How can we add the S&P500 and the Dow Jones indexes?. Thanks

    • @ApexTrainingLLC
      @ApexTrainingLLC 4 месяца назад

      Hey, I just did this video for you! ruclips.net/video/Y7HMOMf412M/видео.html

    • @leopoldovazquez3255
      @leopoldovazquez3255 4 месяца назад

      @@ApexTrainingLLC thanks a lot!!!

    • @JombaTUncleT
      @JombaTUncleT Месяц назад

      ​@@ApexTrainingLLC🎉

    • @JombaTUncleT
      @JombaTUncleT Месяц назад

      ​@@ApexTrainingLLC🎉

  • @bman342a
    @bman342a 5 месяцев назад

    What version of excel? Not seeing map to insert. Is this an add-in?

  • @wats24
    @wats24 5 месяцев назад

    thank 😊😊

  • @jesschodor8949
    @jesschodor8949 5 месяцев назад

    This worked in one workbook I was working in, but now in my new workbook it is copying the formula into every row instead of keeping a blank cell in every other row. Any ideas??

    • @ApexTrainingLLC
      @ApexTrainingLLC 5 месяцев назад

      Hi! Will check on this for you

    • @jesschodor8949
      @jesschodor8949 5 месяцев назад

      Thank you, Rich! Very time consuming task & room for error when this doesn't work, blah! @ApexExcelTraining

    • @jesschodor8949
      @jesschodor8949 5 месяцев назад

      Oy... I had some rows hidden. That was the issue. Resolved.

    • @ApexTrainingLLC
      @ApexTrainingLLC 5 месяцев назад

      I’m glad you got it worked out!

  • @AngelRivera-sg5ue
    @AngelRivera-sg5ue 5 месяцев назад

    please how can i use this with waze maps??

  • @AngelRivera-sg5ue
    @AngelRivera-sg5ue 5 месяцев назад

    hi, great video just how would i make it work with waze live maps can you please let me know

  • @user-nu5kp9zp4v
    @user-nu5kp9zp4v 5 месяцев назад

    THANK YOU

  • @usmaniqbal1836
    @usmaniqbal1836 5 месяцев назад

    Please share data file for practice

  • @ARCHTECHEARNTV
    @ARCHTECHEARNTV 6 месяцев назад

    Thanks a lot 😊

    • @ApexTrainingLLC
      @ApexTrainingLLC 6 месяцев назад

      You’re welcome! Thanks for visiting the channel!

  • @eruditeinvestor4608
    @eruditeinvestor4608 6 месяцев назад

    Thanks so much

  • @sukhjitkaur1978
    @sukhjitkaur1978 6 месяцев назад

    I used the same formula but if the value in first column is blank for next months, it picks random number of days because of formula

    • @ApexTrainingLLC
      @ApexTrainingLLC 4 месяца назад

      check out this updated version... ruclips.net/video/EGe1miguHzY/видео.htmlsi=d1kInDOPre0rJaLQ

  • @SoshiKyo
    @SoshiKyo 7 месяцев назад

    Hi Sir, thank you for sharing this! also, I would like to know if there is any simple way like this to calculate remaining days, from today to specific date. kinda like the count down, it's for something like remaining days for subscription or promo. thank you ^_^

    • @ApexTrainingLLC
      @ApexTrainingLLC 7 месяцев назад

      I'm glad it was useful for you. Yes! To calculate the remaining days, you simply subtract today's date from the future date. Suppose you have a promo that ends on March 31st. You could write ="3/31/2024" - TODAY() Or if the promo expiration date was in a cell, for example, B5. You would write: =B5 - TODAy() as your formula.

    • @SoshiKyo
      @SoshiKyo 7 месяцев назад

      @@ApexTrainingLLCah why didn't I think about it before, actually it might be similar to what I used to do, I put the 2 dates (exp and today) in the cell and substract them. But I have no idea that I can also use =TODAY instead of typing the date manually. On the second thought, it's not always the 'today' date that I want to calculate, sometimes it's different date, so I can't always use =TODAY formula. Anyway thank you for the explanation and for replying my comment Sir, I really appreciate it 😊

  • @MotusfitnessColorado
    @MotusfitnessColorado 7 месяцев назад

    Super helpful, thanks!

    • @ApexTrainingLLC
      @ApexTrainingLLC 7 месяцев назад

      I'm glad it was helpful! Thanks for the feedback.

  • @sarathkumar5405
    @sarathkumar5405 7 месяцев назад

    Thank you very much🙏🙏