I'm new to PowerBI. Please help me get the total count of recurring customers. I need to put the figure in a CARD.
Please see sample data.
The value that will be displayed on the card must be 3.
Customer R000563113 will not be included in the count since the customer is not on the prior month.
sample data
Thanks
just drag and drop your required column and in the card,
Related
I am very new to R as well as to this community, hope all of you are doing well.
I am trying to make a shortcut calculating PnL for 2-3 stocks; say if I use getQuote() to extract the last traded price. From here, may I ask how do I insert my entry price, so I can get subtract the last traded price with my entry price to get the PnL?
I think I need to insert my entry price somehow, and compare entry price to column 3 on the attached result?
Update:
Right now I have the below codes, if I ask, if I wanna subtract last done price to my entry price, how should I code it out?
Again. Thanks a lot.SOXL
Anyway, many thanks for helping. Any thoughts are well appreciated.
getQuote("SOXL")
I'm admittedly new to access so forgive me if there is a simple solution. I have had difficulty searching for an answer as I'm not sure how this needs to be worded...
I have a database containing hundreds of thousands of invoices. I have a query that searches for invoices of the same amount on the same day by the same vendor (with different invoice numbers).
I group by this criteria as well as a count > 1 to display possible duplicates. I'd like to see each record displayed, but it only shows the first invoice number since if I were to group by invoice, the count would be 1 and nothing would get pulled..
I'm sure there is a better way of doing this to achieve the results that I want,. But I am at a loss. If there is further information required to assist, I'll provide what I can.
Thank you.
I just started to use Google Data Studio for creating a dashboard to get more insights in our data. Now I've created the table you can see below.
This is the data from the trackers on our video's. The first event action videotrackerStart is the total amount of people who started watching the video. What I want to do is calculate what percentage the rest of the event actions is from the videotrackerStart event.
So for example (176,985 / 222,468) * 100 = 79.5% and that for each action.
The problem I face, is that I don't know how to (if it is even possible) save the Total Events for videotrackerStart in a variable and use that value to create a new metric.
Does anyone know how I could get this done? I hope the question is clear, please let me know if not.
Thanks in advance!
Edit (2017/10/26): Percentage of total is now supported in Data Studio using Analytics Functions.
Original: Percentage of total for a metric is not yet supported in tables in Data Studio. You can Request this feature or vote for the feature in the existing feature request list.
To represent the same information visually you can try using barcharts.
I am trying to add a column to my SharePoint list to caculate the change in tonnage from the last entry.
For example, assume that the last entry was made about two weeks ago (1/15) and I am making new entry today (2/1). How can I add a column that will caculate the difference between the tonnage entered on 1/15 and the tonnage being entered on 2/1?
I understand that this may be difficult to do, but please let me know if there is any possilbity. Or if there is another tool in SharePoint that will help me cacluate the change over time.
Please help.
Thanks.
I can't think of a way to do it with SharePoint Designer. But if you implemented an ItemAdding Event Receiver, you could look up the value of the previous entry, perform the calculation, and store the value in your column.
I am creating a web application and in this project i have to manage the profit and loss account of a company.
I have two headers as Income and Expenditure
In the Income i have to show the details of income sources with amount group by date and in the similar way i have to show all the expenditures like salary,vat,etc. with amount group by dates.
How can i manage this through grid view so that i can calculate the net profit/loss.
Please help me with the suitable examples.
Thanks in advance.
Your question and the comment isn't explanatory in itself, so i am assuming bit of things myself so pardon me in that case.
I assume you want to Show data from Tbl_Sale under the Income header and data from Tbl_Purchase under Expenditure header.
For that, you will need to have two grid controls one for Tbl_Sale and one for for Tbl_Purchase(Set their respective data sources). Both of these controls orientation is needed to be set vertically rather than the default horizontal. Include the columns in gridview for those values which you want to display : like Item and Amount.
For Total, you will need to have a function which sums up the Entire Sale table and Entire Purchase table and stores the value in some temp field like TotalSumForSale and TotalSumForPurchase and then display them at the bottom of your grid controllers. You can't have them inside the Gridview control