User Profile
ExcelExciting
MVP
Joined 8 years ago
User Widgets
Recent Discussions
Re: Formula 4 week rotation excluding Fridays and weekends
I hope below solution will resolve you issue for 4 weeks rotation... Week Number Formula =INT((DAY(B1)-1)/7)+1 Weekday Number (Mon=1) =WEEKDAY(B1,2) Employee A WFH =IF(AND(B3<6,CHOOSE(B2,1,2,3,4,1)=B3),"W","") Employee B WFH =IF(AND(B3<6,CHOOSE(B2,2,3,4,1,2)=B3),"W","") If this resolves your query don't forget Mark as Solution.24Views0likes0CommentsRe: Website Power query connection
What I can see power query do suggest you a table name Tabular Data, may I know what version of excel are you using. however below is the M code let Source = Web.BrowserContents("https://www.bsp-southpool.com/day-ahead-trading-results-si.html"), #"Extracted Table From Html" = Html.Table(Source, {{"Column1", "TABLE:nth-child(2) > * > TR > :nth-child(1)"}, {"Column2", "TABLE:nth-child(2) > * > TR > :nth-child(2)"}, {"Column3", "TABLE:nth-child(2) > * > TR > :nth-child(3)"}}, [RowSelector="TABLE:nth-child(2) > * > TR"]), #"Promoted Headers" = Table.PromoteHeaders(#"Extracted Table From Html", [PromoteAllScalars=true]) in #"Promoted Headers" If this resolves your query don't forget Mark as Solution.22Views0likes2CommentsRe: Unable to take the htmlpage value for formula
When you are retrieving the value, it is returning as text due currency symbol "₹" Below formula shall be helpful for you. =VALUE(SUBSTITUTE(INDEX(IMPORTHTML("https://www.goodreturns.in/gold-rates/bangalore.html","table",1),2,2),"₹","")) If this resolves your query don't forget Mark as Solution.38Views0likes0CommentsRe: deduct 5% formula question
Assuming that your cell B2 = Project Completion Percentage (eg. 48% or 0.48) cell C2 = otal Amount Requested for Payment than your an use this formula =IF(B2>=0.5, C2*0.1, C2*0.05) this will checks if the project is 50% or more complete if yes then retainage C2 * 10% else C2 * 5% If this resolves your query don't forget Mark as Solution.38Views0likes0CommentsRe: Excel lookup help
You can achieve this using a dynamic array formula with the combination of the functions UNIQUE and FILTER. =UNIQUE(FILTER(C12:C23,C12:C23<>"")) This will automatically spill down the results and display all unique descriptions from the range C12:C23, starting from cell A15. If this resolves your query don't forget Mark as Solution.135Views0likes0CommentsRe: Missing image when Save as Adobe PDF
This issue might happens because Adobe Acrobat is not correctly integrated with Excel, causing the conversion to rely on the default printer driver instead of the Adobe PDF driver. try uninstalling the Adobe PDF and reinstall it again. Hope this should work for you. If this resolves your query don't forget Mark as Solution.152Views0likes0CommentsRe: How to pull values from a different sheet based on a checkbox
never version of excel have check box feature Insert > Checkbox, you can use the same to insert in you template, when the value is tick you can do xlookup If this resolves your query don't forget Mark as Solution.86Views0likes0CommentsRe: How to get a dropdown list of numbers, not dates?
When you paste the value in cells its automatic formatting changes it to numbers and we need to explicitly store it as text. There are two way to deal with this issue: Type an apostrophe (') at the beginning of each entry if you have limited values. '2025-04-01 10:00 '2025-04-01 10:30 this store the value as text Formula version which is more effective for larger dataset, add helper column and use the function TEXT() to convert these values into text and reference dropdown list to the helper column. =TEXT(A2,"yyyy-mm-dd hh:mm:ss") If this resolves your query don't forget Mark as Solution.41Views1like2CommentsRe: How to fill in the blank cells without scrolling in excel after applying filter.
Could you please share your dataset sample? If your goal is to fill only the blank cells with a specific formula, you can easily do this by selecting your data range, then pressing F5, clicking Special, and selecting Blanks. Once the blank cells are highlighted, press F2, type your formula, and then press Ctrl + Enter to apply it across all selected blank cells simultaneously.41Views0likes0CommentsRe: Help with a formula which uses parameters based on which day / date it is.
Hi Mr_Raj_C As suggested by SergeiBaklan the good way is to use a structure table, if you do not have a structure table you may use a range reference and you can use the below formula =( IF( (WEEKDAY($B8, 1) = 1), VLOOKUP(E$6, Variables!$D$8:$E$11, 2, FALSE), IF( ISNUMBER(MATCH($B8, Variables!$G$6:$G$15, 0)), VLOOKUP(E$6, Variables!$D$8:$E$11, 2, FALSE), VLOOKUP(E$6, Variables!$A$8:$B$11, 2, FALSE) ) ) ) * E8 I'm attaching both files, remember using an unstructured table file you need to expand and adjust the range. While with the structured table you need to just update the new information at the last row. Regards, Faraz Shaikh | Microsoft MVP, MCT, MIE, MOS Master, Excel Expert If you find the above solution resolved your query don't forget to mark it as Official/Best Answer to help the other members find it more2.6KViews0likes1CommentRe: Copy formula in Rows and Excel without changing the reference manually.
Hi max342ss Looking at the image I understand you are trying to reference a formula on PivotTable, Keep the cell on the Pivot Table PivotTable Analyze & Design Tab will be activated in the Excel Ribbon Select PivotTable Analyze > Option > Uncheck “Generate GetPivotData” this blog might be helpful for your query How to remove GETPIVOTDATA in Excel for Mac and Windows Regards, Faraz Shaikh | Microsoft MVP, MCT, MIE, MOS Master, Excel Expert If you find the above solution resolved your query don't forget to mark it as Official/Best Answer to help the other members find it more1KViews0likes1CommentRe: Extract characters from string
Hi Yomnaehab Here you go with the updated file version now returning zero Regards, Faraz Shaikh | Microsoft MVP, MCT, MIE, MOS Master, Excel Expert If you find the above solution resolved your query don't forget to mark it as Official/Best Answer to help the other members find it more2.5KViews0likes1Comment
Recent Blog Articles
No content to show