Can I create a SharePoint account to do this?

Diskutiere und helfe bei Can I create a SharePoint account to do this? im Bereich Microsoft Office im Windows Info bei einer Lösung; Hallo Microsoft, I have a local database written in Access 2003. There are 5 users. Each user has a copy of Access and a local "replica" of a... Dieses Thema im Forum "Microsoft Office" wurde erstellt von ThomasDahl2, 15. Dezember 2019.

  1. Can I create a SharePoint account to do this?


    Hallo Microsoft,

    I have a local database written in Access 2003. There are 5 users. Each user has a copy of Access and a local "replica" of a "master" database located on a simple server located on our office network. Once a week (or more) each user opens their replica and synchronizes with the "master" and all their changes are uploaded and they receive any changes that have accumulated in the meantime in the "master".

    We only use Access 2003 and no other Microsoft products other than Windows. I am not looking to use Word, Excel or Outlook.

    This works really well and has done for many years with little or no issues. It is also pretty snappy. We very very rarely loose any data. It is super stable.

    The benefit is that users can leave the office and still be able to work inside the database even if they have no internet or network connection.

    The database has become pretty complex over the years and we are constantly tweaking the functionality.

    The "maser" and hence also the "replicas" are now 670Mb in size. There are 21 linked tables (The Front End links to 21 tables in the replica, and the replica is then synchronized with 21 tables in the "master"). The format is .mdb

    The database is fully normalized so that the Access front end is using multiple tables to display data in its forms.

    As Access no longer supports replication and we are considering more "web" based ways to reach our data I am wondering how this set-up could be migrated to SharePoint. Maybe Office 365 Business Essentials can be used for this?


    1. Will it still be fast enough? Will Access forms still open fast enough?
    2. Can I still use the current Access front end to connect to the data?
    3. Can I/Would I connect to my tables residing in DbBee in the same way as I current link to a "Replica"?
    4. Is there a way to still keep a local copy of all the data in our laptops when traveling and have no internet?
    5. What if this whole thing does not work and we want to move to another system, how can I download all my tables and continues as before?


    In other words.. What do I need to do to get up to date?


    Really appreciate your help on this.

    Regards
    Thomas Dahl
     
  2. CharlesKenyon IA Win User

    Word 365: Einfügen eines Schnellbausteins in ein Textfeld

    Note, your code puts your textbox, not in-line-with text, in the top right corner of your document. If that is where you want it, the building block can create it there.

    You still have not explained why you want to do this with a macro.

    I know of no way to, using vba, directly insert a content control mapped to that node. someone else may. The only way I can do it is using a Building Block.
  3. nubabe Win User

    Animations

    How can i do this? I use the online Version. Does this have anything to do with it?
  4. KwaXi Win User

    Microsoft Konto registrieren mit bestehender Mail nicht möglich

    Hi Georgi,

    This could be the reason - I've verified the domain I wanted to use in Azure AD.

    Is there a way I can migrate existing personal accounts to Azure AD accounts, which all the services e.g. Skype credit and so on?

    So I've basically three options, use a different domain, create an Azure AD account for my daughter with the desired email or delete the domains in Azure Portal.

    Right?

    Thx,

    Daniel
  5. Andreas Killer Win User

    Verzeichnisse / Dateien öffnen und schliessen in VBA

    ich benötige die Abfangungen für angelegte Ordner und Dateien.
    Was bitte soll das sein? Ich rate mal...

    Andreas.

    #Const Develop = True
    
    Private Sub Example_FolderCreate()
    
      Dim Data, Index, This
    
      Dim i As Long
    
      Dim Folder As String
    
      'Read in all values
    
      Data = Range("A1").CurrentRegion.Value
    
      'Create a row pointer for each column
    
      ReDim Index(1 To UBound(Data, 2))
    
      'Create an array for the folder items
    
      ReDim This(0 To UBound(Data, 2))
    
      'Main path
    
      This(0) = ThisWorkbook.Path
    
      
    
      'Initialize
    
      For i = 1 To UBound(Data, 2)
    
        Index(i) = 1
    
      Next
    
      
    
      Do
    
        'Copy the items into our array
    
        For i = 1 To UBound(Data, 2)
    
          This(i) = Data(Index(i), i)
    
        Next
    
        'Create the path
    
        Folder = Join(This, "\")
    
    #If Develop Then
    
        Debug.Print Folder
    
    #Else
    
        'Create it on disk
    
        If Not FolderCreate(Folder) Then
    
          MsgBox Folder, vbCritical, "Can not create:"
    
          Exit Sub
    
        End If
    
    #End If
    
        'Find next item
    
        i = UBound(Data, 2)
    
        Do
    
          'Last row?
    
          If Index(i) = UBound(Data) Then
    
    EndRow:
    
            'Start this column again from first row
    
            Index(i) = 1
    
            'Go one column left
    
            i = i - 1
    
            'Done?
    
            If i < 1 Then Exit Sub
    
          Else
    
            'Next row
    
            Index(i) = Index(i) + 1
    
            'Empty?
    
            If IsEmpty(Data(Index(i), i)) Then
    
              'Start over
    
              GoTo EndRow
    
            Else
    
              'Create this one in the next round
    
              Exit Do
    
            End If
    
          End If
    
        Loop
    
      Loop
    
    End Sub
    
    Function FolderCreate(ByVal Path As String) As Boolean
    
      'Creates a complete sub directory structure
    
      Dim Temp, i As Integer
    
      On Error GoTo ExitPoint
    
      If Dir(Path, vbDirectory) = "" Then
    
        If Right$(Path, 1) = "\" Then Path = Left$(Path, Len(Path) - 1)
    
        If Left$(Path, 2) = "\\" Then
    
          i = InStr(3, Path, "\")
    
          Temp = Split(Mid$(Path, i + 1), "\")
    
          Temp(0) = Left$(Path, i) & Temp(0)
    
        Else
    
          Temp = Split(Path, "\")
    
        End If
    
        Path = ""
    
        For i = 0 To UBound(Temp)
    
          Path = Path & Temp(i) & "\"
    
          If Dir(Path, vbDirectory) = "" Then MkDir Path
    
        Next
    
      End If
    
      FolderCreate = True
    
    ExitPoint:
    
    End Function
    
    Function FolderDelete(ByVal Path As String) As Boolean
    
      'Deletes a complete sub directory structure
    
      Dim This As String
    
      Dim Temp, i As Integer
    
      On Error GoTo ExitPoint
    
      If Right$(Path, 1) <> "\" Then Path = Path & "\"
    
      This = Path
    
      Do
    
        Do
    
          If Dir(This & "*.*") <> "" Then Kill This & "*.*"
    
          Temp = Dir(This, vbDirectory)
    
          Do While Temp = "." Or Temp = ".."
    
            Temp = Dir
    
          Loop
    
          If Temp = "" Then
    
            Exit Do
    
          Else
    
            This = This & Temp & "\"
    
          End If
    
        Loop
    
        RmDir This
    
        If This = Path Then
    
          Exit Do
    
        Else
    
          Temp = Split(This, "\")
    
          ReDim Preserve Temp(0 To UBound(Temp) - 1)
    
          Temp(UBound(Temp)) = ""
    
          This = Join(Temp, "\")
    
        End If
    
      Loop
    
      FolderDelete = True
    
    ExitPoint:
    
    End Function
  6. CharlesKenyon IA Win User

    Word 365: Einfügen eines Schnellbausteins in ein Textfeld

    Hello Torsten,

    I am reading your question and responding using a translation service. It does not do a very good job. I apologize if there are misunderstandings. In the hope that it helps, I will send my response in English as well.

    I am uncertain of your goal and why you are using a macro to accomplish it.

    I believe what you are trying to insert is a Text Box (shape) with the Status document property Content Control from the Quick Parts > Document Properties menu.

    When I am trying to insert a complex structure in a Word document, my preference is to create and save it as an AutoText or other Building Block entry and use that. It can be inserted easily using a keyboard shortcut, QAT button. It can also be inserted using
    a macro. I am going to prepare a sample that does this for you and post it.

    If I am incorrect as to your goal, please let me know what it is you are attempting.

    This forum is a user-to-user support forum. I am a fellow user.

    I hope this information helps.

    Please let me know if you have any more questions or require further help.

    You can ask for more help by replying to this post (Reply button below).

    Stay well
  7. User Advert


    Hi,

    willkommen im Windows Forum!
Thema:

Can I create a SharePoint account to do this? - Microsoft Office

Die Seite wird geladen...

Can I create a SharePoint account to do this? - Similar Threads - Can create SharePoint

Forum Datum

I can

I can: Ich kann keine emails empfangen und versenden
Outlook.com 10. April 2024

How to create a short link to a document on Sharepoint?

How to create a short link to a document on Sharepoint?: We need a way to put short links to further reading documents on our PRINTED One-Pagers, Internal Bulletins and Executive Summaries.How is anyone, let alone an executive, going to be able to TYPE...
Microsoft Office 9. Januar 2024

I can

I can: Ich kann keine email mehr bekommen Hilfe
Outlook.com 19. November 2023

How can I download a OneDrive File ?

How can I download a OneDrive File ?: HelloI was sent an important link by e-mail for OneDrive:Content of the Mail:"XXXX has shared a OneDrive for Business file with you. To view it, click on the link...
Games und Spiele 16. November 2023

How can I download a OneDrive File ?

How can I download a OneDrive File ?: HelloI was sent an important link by e-mail for OneDrive:Content of the Mail:"XXXX has shared a OneDrive for Business file with you. To view it, click on the link...
Microsoft Office 16. November 2023

I can not login to my second account.

I can not login to my second account.: Hello, I have been trying to login to my second account for two days, and it only shows: There's a temporary problem There's a temporary problem with the service. Please try again. If you...
Outlook.com 9. April 2018

How can i delete my Account?

How can i delete my Account?: How can i delete my Office 365 Account?
Microsoft Office 26. Januar 2018
Can I create a SharePoint account to do this? solved
  1. Diese Seite verwendet Cookies, um Inhalte zu personalisieren, diese deiner Erfahrung anzupassen und dich nach der Registrierung angemeldet zu halten.
    Auf dieser Website werden Cookies für die Zugriffsanalyse und Anzeigenmessung verwendet.
    Wenn du dich weiterhin auf dieser Seite aufhältst, akzeptierst du unseren Einsatz von Cookies.