[Solved] Calucating the total number of cells in a row that are less than 16 hours [closed]

[ad_1] Assuming that column A of sheet1 are date/times, and not text, and you are attempting to find how many date/times are more than 16 hours old then you simply want to place the following formula in sheet2!F7: =COUNTIF(sheet1!A:A,”<“&NOW()-0.75) (16 hours is 0.75 of a day.) If the data in column A is text, then … Read more

[Solved] Want to concatenate multiple row data in in cell along with its values if present. Emp Id should not come if no data available infromt of it

[ad_1] Want to concatenate multiple row data in in cell along with its values if present. Emp Id should not come if no data available infromt of it [ad_2] solved Want to concatenate multiple row data in in cell along with its values if present. Emp Id should not come if no data available infromt … Read more

[Solved] How to convert to percentage [closed]

[ad_1] Perhaps the following VBA solution using Regular Expressions. Function FixMyPercentages(target As String) As String Dim output As String output = target With New RegExp .Global = False .MultiLine = True .IgnoreCase = False .pattern = “\s\d+\.\d+$|^\d+\.\d+\s|\s\d+\.\d+\s” Dim myMatch As Object, myMatches As Object Do While .test(output) Set myMatches = .Execute(output) For Each myMatch In … Read more

[Solved] Calculating partial months salary costings for employees on a project in Excel [closed]

[ad_1] In cell I2, put the following formula (see UPDATE section for a simplified version): =LET(setPrj, A2:E12, setRoster, A15:F33, SOMs, I1:T1, namesPrj, INDEX(setPrj,,1), startsPrj, INDEX(setPrj,,4), endsPrj, INDEX(setPrj,,5),names, INDEX(setRoster,,1),starts, INDEX(setRoster,,2), ends, INDEX(setRoster,,3), salaries,INDEX(setRoster,,6), empty, “,,”, SPLIT, LAMBDA(x,case, LET(y, TEXTSPLIT(TEXTJOIN(“;”,,x),”,”,”;”), z, FILTER(y, INDEX(y,,1)<>””, NA()), IFS(case=0, z,case=1, HSTACK(INDEX(z,,1), 1*CHOOSECOLS(z,2,3)), case=2, 1*z))), BYCOL(SOMs, LAMBDA(SOM, LET(EOM, EOMONTH(SOM,0),endsAdj, IF(ends > 0, … Read more

[Solved] What is the excel formula to find the upcoming Saturday a month?

[ad_1] =EOMONTH(TODAY(),0)+7-WEEKDAY(EOMONTH(TODAY(),0)+7) If you want it based on the current date, find the next first Saturday: =TODAY()+7-WEEKDAY(TODAY()+7) This will find the next first saturday of the month. So on the 6th of this month it will return 2/9/2017 3 [ad_2] solved What is the excel formula to find the upcoming Saturday a month?

[Solved] Extracting the characters between two – in the current string in an excel macro [closed]

[ad_1] In your case, if the suggested method Text-To-Columns is not an option somehow, you could use: =TRIM(MID(SUBSTITUTE(A1,”-“,REPT(” “,LEN(A1))),2*LEN(A1)+1,LEN(A1))) This part 2*.. stands for (N-1)*.., in this case the third ‘word’ More information here [ad_2] solved Extracting the characters between two – in the current string in an excel macro [closed]

[Solved] Round cells then auto fill VBA

[ad_1] This should help you get started. Range.Formula property on MSDN Range.AutoFill method on MSDN With Activesheet.Range(“AR8”) .Formula = “=ROUND(IF(AP8>(AN8*P8),AP8,AN8*P8),2)” .AutoFill Destination:=.Resize(100), Type:=xlFillDefault End With 0 [ad_2] solved Round cells then auto fill VBA

[Solved] EXCEL – Search formula with multiple criteria

[ad_1] The following array formula returns the first entry in column B where it is not null and also where column A has cell value aaaaa. = IFERROR(INDEX(B1:B6,MATCH(1,(A1:A6=”aaaaa”)*(B1:B6<>”null”),0)),”no match”) Note this is an array formula, so you must press Ctrl+Shift+Enter on the keyboard after typing the formula rather than just pressing Enter. To return a … Read more