I have a spreadsheet where I need to look up a value based on multiple criteria. One spreadsheet is the master, the other contains the data I need to bring into the master spreadsheet. The master spreadsheet has the Employee ID (Column A),row 1 has the Pay Date such as 9/13/19 (Column I)...
I have attached an example spreadsheet.
I am trying to spread the variance into cells in column E via a formula. Currently it is manually. Cell F21 must equal 100%.
Any ideas?
Thanks!
I am trying to look at sales data for many stores. Some stores were not open at some points in time. For instance, maybe 3 stores did not open until 11/16 while others were open from 07/16 to present. I want to use the TREND function but want it to ignore the zeros.
I did find a...
I am pulling data from a database. What I would like to do is setup a few parameters in the workbook that contains the query and use named ranges to filter the data in the query.
For instance have a start and end date, service, the beginning of a billing code such as PR, CB, or FB that I enter...
Yes the 1900 date is correct as some were entered that way into the DB.
For retention it would be (4,759 - 37 )/5,294 = 89.2%
My issue is how do I not count the one's that started in the period but also left within the period. I think it is going to take some tricky filtering.
Chihiro,
I have attached an example excel file. The Date Table will be a slicer to control the dates. I'll need to do the calculations in columns J thru M. Column M will be the measure that will be displayed in Power BI.
I am looking for a way to count between dates using DAX.
Anyone have any ideas on how to calculate a trailing 12 months in Power BI to create a graph showing how the client base has changed over time during a 12 month period?
My calculation in Excel is Retention Rate = (End Bal. - New)/Begin Bal.
I have data where there is a start date and an end...
Here is some example code I would use as a sub-macro:
Sub AnicoFormat()
'This macro works
Dim MyFolder As String, MyFile As String
Dim ws As Worksheet, wb As Workbook
MyFolder = "C:\Testing\Anico"
MyFile = Dir(MyFolder & "\*.xl*")
Do While MyFile <> ""
Workbooks.Open...
Kenneth:
Yes there is a reason, of the 9 folders created (see the top of the code where all the "MkDir" are), there is a different format for the spreadsheets in each folder.
So, with the code that I have, I am trying to figure out how to call a sub-macro to go through each of the files in...
I have a macro that creates several folders, then takes data from one spreadsheet and creates several spreadsheets and saves them to a specific folder.
Next I need to add several Call Macros to format each file in each folder, there are 9 folders, what is my best option?
Should I setup a...
I have a spreadsheet with data in columns A:N, headers are in row 1. Currently my macro takes the client name (there are 24 clients) in column N and creates a spreadsheet and saves it to a folder. In column N there are the names of the vendors associated with the clients. What I would like to do...
Just thinking here... what if I created two columns in the table SInvoices called startDate and endDate then using an IF statement, based on the SInvoice dates, I could calculate the commission rate and then use the slicer?
I have a table called SInvoices that has a column called invoiceDate. I am using a slicer to select a date range. I have another table called Commissions that has a column called startDate and another called endDate. I would like to have it when the slicer is used to select the date range it...
Thanks Chihiro.
I believe I have figured it out. I took and loaded the table twice. On one I filtered on the end date. On the other I used Term. I then used Append and it seems to have worked. After that I made the two tables Connection Only and only the Appended data is showing.
I am kind of stuck and need an outside opinion. I have some data where the client has a specific term date, which is easy to filter. However, there is also a column where the client is either active or terminated.
The issue is that in some cases the client is active but has a end date and in...
Thank for both replies. Chihiro's formula delivered the desired result. I had almost the same formula but used TRUE after INDEX. That was what threw me off.
Again, thanks to both of you.
In the example spreadsheet in column A is an ID# and in column B is the relationship. In row 2 there is the employee column B and their ID# in column A. In rows 3-5, they are related to the employee in row 2. What I am trying to do is in column C to have the ID# repeat until Employee is found...
OK I figured out how to do 0 to 25 in one calculation:
0 to 25 = countrows(CALCULATETABLE(Company,Company[EE Count] >0 && Company[EE Count] <=25))
So, how do I create a nested measure for all the groupings listed in my first post?
I have a table called Table1. In that table I have a company ID and a total count of employees. The fields are co and EE Count in the table. The count was summed up in the query itself.
Now I want to break the EE Count into groups mentioned above.
I have a query setup with all the parameters needed. All I need now is to be able to display my data in groupings like this:
0 to 25
26 to 50
51 to 100
101 to 150
151 to 200
+200
What is the DAX counter part to COUNTIFS?
Thanks,
Mike